pyimreg / python-register

Linear and non-linear image registration methods, using scipy and numpy.
Other
62 stars 34 forks source link

.. -- mode: rst --

About

imreg, short for image registration, is a python package for image registration built ontop of scipy and numpy.

It is currently maintained by Nathan Faggian, Riaan Van Den Dool and Stefan Van Der Walt.

Important links

Dependencies

The required dependencies to build the software are python >= 2.5, setuptools, NumPy >= 1.5, SciPy >= 0.9 and a working C++ compiler.

To run the tests you will also need py.test >= 2.0.

Install

This packages uses distutils, which is the default way of installing python modules. To install in your home directory, use::

python setup.py install --home

To install for all users on Unix/Linux::

python setup.py build

sudo python setup.py install

Development

Basic rules for commits to the imreg repository:

GIT


You can check the latest sources with the command::

    git clone git://github.com/pyimreg/imreg.git

Contributors

Follow: Fork + Pull Model::

http://help.github.com/send-pull-requests/

Maintainers



Follow: Shared Repository Model

Tracking an already formed branch::

   git checkout -b localBranch origin/remoteBranch

Forming a new branch and pushing to origin::

   git checkout -b localFeature

   git push origin localFeature