Itk-elastix

Latest version: v0.19.2

Safety actively analyzes 630328 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 6

0.11.1

0.11.0

0.10.0

0.9.0

-----------------------

Enhancements

- Set package version for 0.9.0 release ([1892330](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/1892330))
- Add two rows to app ([54bde04](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/54bde04))
- Add voila to Binder requirements ([d739b29](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/d739b29))
- Add jupyter_config.json for Voila ([dd26498](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/dd26498))
- Use view instead of Viewer for viewer initialized in registration app ([0eecfbc](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/0eecfbc))
- Registration application file naming for consistency ([6368120](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/6368120))
- adding a general web-registration example ([22bd436](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/22bd436))

Documentation Updates

- Add voila registration app badge ([24069b1](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/24069b1))
- Fix Binder link -- "0" -> "01" ([8ad7217](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/8ad7217))

Platform Fixes

- Update CI for GitHub macOS runner 10.15 changes ([98c54d4](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/98c54d4))

Bug Fixes

- Move tornado_settings to .jupyter/jupyter_notebook_config.py ([6585cf3](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/6585cf3))
- Change voila tornado settings specification ([3d199ef](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/3d199ef))
- update path to config file in comment ([70aebf2](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/70aebf2))
- Move tornado_settings to .jupyter/jupyter_notebook_config.py ([b5617d0](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/b5617d0))
- Change voila tornado settings specification ([ee34f9d](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/ee34f9d))
- Reduce Binder JupyterLab build memory requirements ([8229483](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/8229483))


Acknowledgements
----------------

The lead developers of elastix are [Stefan Klein](https://github.com/stefanklein) and [Marius Staring](https://github.com/mstaring).

This software was initially developed at the Image Sciences Institute, under supervision of Josien P.W. Pluim. Today, [many](https://github.com/SuperElastix/elastix/graphs/contributors) have
contributed to elastix.

If you use this software anywhere we would appreciate if you cite the following articles:

- S. Klein, M. Staring, K. Murphy, M.A. Viergever, J.P.W. Pluim,
\"elastix: a toolbox for intensity based medical image
registration,\" IEEE Transactions on Medical Imaging, vol. 29,
no. 1, pp. 196 - 205, January 2010.

- D.P. Shamonin, E.E. Bron, B.P.F. Lelieveldt, M. Smits, S. Klein
and M. Staring, \"Fast Parallel Image Registration on CPU and GPU
for Diagnostic Classification of Alzheimer's Disease\", Frontiers in
Neuroinformatics, vol. 7, no. 50, pp. 1-15, January 2014.

This ITK module is based on [SimpleElastix](http://simpleelastix.github.io/), created by [Kasper Marstal](https://github.com/kaspermarstal). For more information, see:

- Kasper Marstal, Floris Berendsen, Marius Staring and Stefan Klein,
\"SimpleElastix: A user-friendly, multi-lingual library for medical
image registration\", International Workshop on Biomedical Image
Registration (WBIR), Las Vegas, Nevada, USA, 2016

0.8.0

ITKElastix
==========

![image](https://github.com/InsightSoftwareConsortium/ITKElastix/workflows/Build,%20test,%20package/badge.svg)
[![PyPI Version](https://img.shields.io/pypi/v/itk-elastix.svg)](https://pypi.python.org/pypi/itk-elastix)
[![image](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/InsightSoftwareConsortium/ITKElastix/master?urlpath=lab/tree/examples%2FITK_Example1_SimpleRegistration.ipynb)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/InsightSoftwareConsortium/ITKElastix/blob/master/LICENSE)
[![Versioned software citation](https://zenodo.org/badge/207451937.svg)](https://zenodo.org/badge/latestdoi/207451937)

Overview
--------

Provides an [ITK](https://www.itk.org) Python interface to [elastix](http://elastix.isi.uu.nl/), a toolbox for rigid and nonrigid registration of images.

elastix is open source software, based on the well-known [Insight Toolkit (ITK)](https://discourse.itk.org). The software consists of a collection of algorithms that are commonly used to solve (medical) image registration problems. The modular design of elastix allows the user to quickly configure, test, and compare different registration methods for a specific application.

Installation
------------

Install cross-platform binary Python packages with [pip](https://pypi.org/project/pip/):

pip install itk-elastix

*Experimental* GPU-accelerated packages can be installed on Linux with:

pip install itk-elastix-opencl

Usage
-----

To register two images, traditionally called the fixed image and the moving image:

import itk

fixed_image = itk.imread('path/to/fixed_image.mha')
moving_image = itk.imread('path/to/moving_image.mha')

registered_image, params = itk.elastix_registration_method(fixed_image, moving_image)

Interactive examples and tutorial material can be found in the [examples](https://github.com/InsightSoftwareConsortium/ITKElastix/tree/master/examples) directory. Run the examples in free cloud compute containers [on MyBinder](https://mybinder.org/v2/gh/InsightSoftwareConsortium/ITKElastix/master?urlpath=lab/tree/examples%2FITK_Example1_SimpleRegistration.ipynb) or clone the repository and run the notebooks locally in [Jupyter Notebook or Jupyter Lab](https://jupyter.org/). Try out the *experimental* GPU packages [on Paperspace Gradient](https://www.paperspace.com/temmx3m64/notebook/prdfn7bsz).

ITKElastix can be used with both the [procedural](https://docs.python.org/3/howto/functional.html) and the [object oriented method](https://docs.python.org/3/howto/functional.html), as shown in the example notebooks. The procedural method is shorter, less explicit and currently slightly less functional than the object oriented method, however the execution time and output do not differ apart from possible differences due to the stochastic nature of the Elastix algorithm.

Acknowledgements
----------------

The lead developers of elastix are [Stefan Klein](https://github.com/stefanklein) and [Marius Staring](https://github.com/mstaring).

This software was initially developed at the Image Sciences Institute, under supervision of Josien P.W. Pluim. Today, [many](https://github.com/SuperElastix/elastix/graphs/contributors) have
contributed to elastix.

If you use this software anywhere we would appreciate if you cite the following articles:

- S. Klein, M. Staring, K. Murphy, M.A. Viergever, J.P.W. Pluim,
\"elastix: a toolbox for intensity based medical image
registration,\" IEEE Transactions on Medical Imaging, vol. 29,
no. 1, pp. 196 - 205, January 2010.

- D.P. Shamonin, E.E. Bron, B.P.F. Lelieveldt, M. Smits, S. Klein
and M. Staring, \"Fast Parallel Image Registration on CPU and GPU
for Diagnostic Classification of Alzheimer's Disease\", Frontiers in
Neuroinformatics, vol. 7, no. 50, pp. 1-15, January 2014.

This ITK module is based on [SimpleElastix](http://simpleelastix.github.io/), created by [Kasper Marstal](https://github.com/kaspermarstal). For more information, see:

- Kasper Marstal, Floris Berendsen, Marius Staring and Stefan Klein,
\"SimpleElastix: A user-friendly, multi-lingual library for medical
image registration\", International Workshop on Biomedical Image
Registration (WBIR), Las Vegas, Nevada, USA, 2016

0.7.0

Enhancements

- Bump Python package version to 0.7.0 ([c731e04](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/c731e04))
- Build Python 3.9 packages ([97d2729](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/97d2729))
- Support transformix_filter functional interface ([34c9c28](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/34c9c28))
- Switch to latest version of SuperElastix/elastix (using ITK 5.1.1) ([2bdca95](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/2bdca95))
- Add Treebeard example notebook CI test configuration ([1e1d80c](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/1e1d80c))
- Update example notebooks for itk-elastix-0.6 ([61718bd](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/61718bd))
- Update MyBinder requirements ([7ba1dcc](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/7ba1dcc))

Documentation Updates

- add a link to Kasper's GitHub profile ([1784baf](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/1784baf))

Platform Fixes

- use ITK_ prefix in testing macros ([aee748b](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/aee748b))

Style Changes

- Use ElastixRegistrationMethod+TransformixFilter from elastix repo ([e241919](https://github.com/InsightSoftwareConsortium/itkwidgets/commit/e241919))


Acknowledgements
----------------

The lead developers of elastix are [Stefan Klein](https://github.com/stefanklein) and [Marius Staring](https://github.com/mstaring).

This software was initially developed at the Image Sciences Institute, under supervision of Josien P.W. Pluim. Today, [many](https://github.com/SuperElastix/elastix/graphs/contributors) have
contributed to elastix.

If you use this software anywhere we would appreciate if you cite the following articles:

- S. Klein, M. Staring, K. Murphy, M.A. Viergever, J.P.W. Pluim,
\"elastix: a toolbox for intensity based medical image
registration,\" IEEE Transactions on Medical Imaging, vol. 29,
no. 1, pp. 196 - 205, January 2010.

- D.P. Shamonin, E.E. Bron, B.P.F. Lelieveldt, M. Smits, S. Klein
and M. Staring, \"Fast Parallel Image Registration on CPU and GPU
for Diagnostic Classification of Alzheimer's Disease\", Frontiers in
Neuroinformatics, vol. 7, no. 50, pp. 1-15, January 2014.

This ITK module is based on [SimpleElastix](http://simpleelastix.github.io/), created by [Kasper Marstal](https://github.com/kaspermarstal). For more information, see:

- Kasper Marstal, Floris Berendsen, Marius Staring and Stefan Klein,
\"SimpleElastix: A user-friendly, multi-lingual library for medical
image registration\", International Workshop on Biomedical Image
Registration (WBIR), Las Vegas, Nevada, USA, 2016

Page 4 of 6

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.