All Projects → brainglobe → slicereg

brainglobe / slicereg

Licence: GPL-3.0 license
A 2D-3D histological brain slice registration application for mouse, rat, zebrafish brains.

Programming Languages

python
139335 projects - #7 most used programming language
Gherkin
971 projects

Projects that are alternatives of or similar to slicereg

AutoSweep
The implementation for the AutoSweep (TVCG 2018)
Stars: ✭ 47 (+113.64%)
Mutual labels:  3d-models
redcube
JS renderer based on GLTF to WebGPU or WebGL backends.
Stars: ✭ 86 (+290.91%)
Mutual labels:  3d-models
dometyl-keyboard
A parametric generator for designing split, concave, ergonomic keyboards written in ocaml.
Stars: ✭ 84 (+281.82%)
Mutual labels:  3d-models
PolyDraw
✳️ PTSource PolyDraw is a free 3D polygonal modeller for Windows x86 and x64, for creating or modifying 3D objects using a mesh of 3D points and parametric NURBS Curves .Exports and imports to over 40 formats including WebVR and 3D Printing.
Stars: ✭ 17 (-22.73%)
Mutual labels:  3d-models
awesome-citygml
The ultimate list of open data semantic city models
Stars: ✭ 57 (+159.09%)
Mutual labels:  3d-models
ecad-models
Random 3D models and such for CAD/ECAD
Stars: ✭ 18 (-18.18%)
Mutual labels:  3d-models
story-unity3D
Horror Game Development
Stars: ✭ 32 (+45.45%)
Mutual labels:  3d-models
stl-fortran
Fortran STL File I/O
Stars: ✭ 16 (-27.27%)
Mutual labels:  3d-models
floor3d-card
Your Home Digital Twin: aka floor3d-card. Visualize Home Assistant state and perform actions using objects in a 3D home model based on Three.js.
Stars: ✭ 237 (+977.27%)
Mutual labels:  3d-models
Voice2Mesh
CVPR 2022: Cross-Modal Perceptionist: Can Face Geometry be Gleaned from Voices?
Stars: ✭ 67 (+204.55%)
Mutual labels:  3d-models
building-editor
3D model editor for building/architecture
Stars: ✭ 24 (+9.09%)
Mutual labels:  3d-models
StlVault
3D object viewer and organizer
Stars: ✭ 104 (+372.73%)
Mutual labels:  3d-models
voxelizer
👾 Voxelization of 3D models
Stars: ✭ 32 (+45.45%)
Mutual labels:  3d-models
treegen
Vegetation Generation Tool for Houdini
Stars: ✭ 72 (+227.27%)
Mutual labels:  3d-models
blender-ply-import
A Python module for faster import of PLY models in Blender
Stars: ✭ 19 (-13.64%)
Mutual labels:  3d-models
WMIT
Warzone Model Import Tool - for use with Warzone 2100
Stars: ✭ 14 (-36.36%)
Mutual labels:  3d-models
3-D-Scene-Graph
3D scene graph generator implemented in Pytorch.
Stars: ✭ 52 (+136.36%)
Mutual labels:  3d-models
MeshODE
MeshODE: A Robust and Scalable Framework for Mesh Deformation
Stars: ✭ 77 (+250%)
Mutual labels:  3d-models
KiBot
KiCad automation utility
Stars: ✭ 203 (+822.73%)
Mutual labels:  3d-models
Syn2Real
Repository for Transfer Learning using Deep CNNs trained with synthetic images
Stars: ✭ 16 (-27.27%)
Mutual labels:  3d-models

Project Status: Concept – Minimal or no implementation has been done yet, or the repository is only intended to be a limited example, demo, or proof-of-concept. Actions Status Coverage Status Maintainability Rating Gitpod ready-to-code

slicereg

A 2D-3D histological brain slice registration application for mouse, rat, and zebrafish brains.

Features

At the moment, only some very basic features are implemented:

  • Displays multi-channel OME-TIFF files onscreen.
  • Loads 25um and 100um resolution Allen Mouse Reference Atlas into a 3D visualizer
  • 2D slices can be translated and rotated in 3D space.

If you'd like to try it out, check the Installation section below.

Next Steps

Next features are focused on manual registration in the GUI:

  • manual registration:
    • Comparison widget between section and reference atlas
    • Controls for full affine transforms
  • multi-slice handling:
    • Load multiple slices at once
    • Slice selection and multi-slice manipulation interface.
  • QuPath Visualization
    • Import QuPath files onto loaded slices for 3D visualization.
  • More control over visualization
    • View manipulation tools (channel selector, atlas transparency controls, qupath show/hide, etc)
    • CLim controls

Installation

NOTE!!! If you are using MacOS BigSur OpenGL will not work. We are still waiting on a solution from other developers on how to fix this

Using Python

Downloading the source code

Get a copy of the project onto your computer using git:

git clone https://github.com/brainglobe/slicereg
cd slicereg

Setting up the Project

This project uses Poetry for installing dependencies; this is to make it easier for getting the same versions of python libraries on everyones' computer and help manage virtual environments. To get it, it can be pip-installed:

pip install poetry

To set up a virtual environment and install the dependencies (there are a lot of dependencies, this may take a couple minutes):

poetry install

Note: This project is python 3.8-only. If you get an error that says that python 3.8 is not available, then one way you can get it is with conda, if you have it installed already:

conda create -n py38 python=3.8
conda activate py38

Running the Project

Run the program:

poetry run bg-slicereg

Downloading Test Data

Some test data can be made available for project developers.
After you've been added to the access list, you can download it using DVC:

poetry run dvc pull

The first time you do this, there will be an authentication procedure.
It will ask you to go to a Google Drive link and log in.
Once you've logged in, copy-paste the authentication token from the browser into your terminal and press enter.
The example data will appear in the project's data directory.

Troubleshooting

"Virtual environment already activated:"

To solve this you will need to use pip to install the dependencies:

poetry export -f requirements.txt --dev --without-hashes --output requirements.txt
pip install -r requirements.txt
Display issues

In some cases (e.g. using WSL), you might need to export the display.

  1. export DISPLAY=:0
  2. run Xming
Data download

In case DVC pull is not working

ERROR: failed to pull data from the cloud - Checkout failed for following targets:
  1. delete the folder cache in .dvc
  2. rerun dvc pull
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].