_ _ (_) | | _ __ ___ ___ _ __ _ __ ___ __ _ _ __| | | '_ ` _ \ / _ \ '__| '_ ` _ \ / _` | |/ _` | | | | | | | __/ | | | | | | | (_| | | (_| | |_| |_| |_|\___|_| |_| |_| |_|\__,_|_|\__,_|
Mermaid is a registration toolkit making use of automatic differentiation for rapid prototyping. It is written in PyTorch and runs on the CPU and the GPU. Though GPU acceleration only becomes obvious for large images or 3D volumes. It supports registration of 1D (functions), 2D, and 3D images.
The easiest way to install a development version is to clone the repository, create a virtual conda environment and install it in there. This can be done as follows for a development installation:
conda create --name mermaid python=3.7 pip
conda activate mermaid
python setup.py develop
Or like this if you want to do a standard installation of mermaid:
conda create --name mermaid python=3.7 pip
conda activate mermaid
python setup.py install
There is also a nice documentation which can be built by executing
cd mermaid
cd docs
make html
You can also find the latest version on readthedocs:
https://mermaid.readthedocs.io/en/latest/index.html
In the near future there will also be a conda installer available. This will then allow installations via
conda install -c pytorch -c conda-forge -c anaconda -c uncbiag mermaid
There are already initial OSX/Linux versions available which can be installed via conda, but there are still some issues that need to be ironed out, so they might not be fully functional yet. Stay tuned.
Supported transformation models:
Supported similarity measures:
Supported solvers:
Optimizer:
We also wrote a companion python package, easyreg, which allows training deep networks for image registration based on the registration models available in mermaid. I.e., easyreg allows training networks that backpropagate through the mermaid transformation models (SVF, LDDMM, ...). You can have a look at the package here:
https://github.com/uncbiag/easyreg
See https://github.com/uncbiag/registration for an overview of other registration approaches of our group and a short summary of how the approaches relate.
To publish to conda, just tag a version in the format "major.minor.subminor". do not add a leading v. Travis will automatically push to the conda repository at uncbiag/mermaid. After this is done, to publish to pip, first locally run
pip wheel . -w dist
to build the wheel, then run
twine upload --repository pypi dist/mermaid-<version_number>--py3-none-any.whl
to publish to pypi.