neurodata / ndreg-old

NeuroData's registration library, built in python using ITK
Apache License 2.0
2 stars 2 forks source link

ndreg-old

NeuroData's registration library, built in python using ITK

Submit bug reports here.

Installation

Easy way

The easiest way to install ndreg with docker. To build a new Docker image: docker build . -t ndreg-jupyter

To run and test with a sample notebook on port 8888: docker run -p 8888:8888 ndreg-jupyter

If you want to save notebooks, you will need to mount a local path, e.g: docker run -p 8888:8888 -v pwd/notebooks:/run/notebooks ndreg-jupyter

Hard way

More advanced users can build ndreg from scratch

Installating dependances on Ubuntu 16.04 and later

sudo apt-get -y install cmake python-numpy libinsighttoolkit4-dev libfftw3-dev

Installing dependances other linux distributions

Installing ndreg

git clone https://github.com/neurodata/ndreg.git
cd ndreg
cmake .
make && sudo make install