├── .gitignore ├── LICENSE ├── README.md ├── example.py ├── imgreg2D ├── __init__.py ├── affine.py ├── points.py ├── register.py └── utils.py ├── media ├── demo.gif ├── original.jpg └── rotated.jpg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/example.py -------------------------------------------------------------------------------- /imgreg2D/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/imgreg2D/__init__.py -------------------------------------------------------------------------------- /imgreg2D/affine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/imgreg2D/affine.py -------------------------------------------------------------------------------- /imgreg2D/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/imgreg2D/points.py -------------------------------------------------------------------------------- /imgreg2D/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/imgreg2D/register.py -------------------------------------------------------------------------------- /imgreg2D/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/imgreg2D/utils.py -------------------------------------------------------------------------------- /media/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/media/demo.gif -------------------------------------------------------------------------------- /media/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/media/original.jpg -------------------------------------------------------------------------------- /media/rotated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/media/rotated.jpg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrancoLab/imgreg2D/HEAD/setup.py --------------------------------------------------------------------------------