Simpleitk

Latest version: v2.4.1

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

Scan your dependencies

Page 4 of 9

2.1.1

The patch release Updates the ITK version to 5.2.1.

Installing SimpleITK

Complete instructions on getting started with SimpleITK including downloading binaries or building SimpleITK can be found on the SimpleITK [Read the Docs web page](https://simpleitk.readthedocs.io/en/master/installation.html).

Python Binary Downloads

Python binary wheels are available for download from PyPI. It is important to have the latest version of pip for correct wheel compatibility and installation. To install the latest SimpleITK package:


python -m pip install --upgrade pip
python -m pip install SimpleITK


Anaconda Binary Downloads

SimpleITK packages are available for _conda_ Python package manager as a monolithic package:


conda install -c simpleitk simpleitk


or integrated into the _coda-forge_ package dependencies:


conda install simpleitk --channel conda-forge


Improvements
------------

* Update ITK superbuild version to v5.2.1.

2.1.0

The release includes new features, API changes, documentation updates and bug fixes. This is the first SimpleITK release to provide binaries for the new Apple M1 ARM.


Installing SimpleITK

Complete instructions on getting started with SimpleITK including downloading binaries or building SimpleITK can be found on the SimpleITK [Read the Docs web page](https://simpleitk.readthedocs.io/en/master/installation.html).

Python Binary Downloads

Python binary wheels are available for download from PyPI. It is important to have the latest version of pip for correct wheel compatibility and installation. To install the latest SimpleITK package:


python -m pip install --upgrade pip
python -m pip install SimpleITK


Apple M1 ARMv8 Support

Wheels with the platform tag "macxos-11_0_arm64" are available from PyPI, to provide initial support for the Apple M1 Silicon for Python 3.8 and 3.9.

Anaconda Binary Downloads

SimpleITK packages are available for _conda_ Python package manager as a monolithic package:


conda install -c simpleitk simpleitk


or integrated into the _coda-forge_ package dependencies:


conda install simpleitk --channel conda-forge





Release Notes
============

API Changes
-----------

* Add `Image::getBufferAsByteBuffer` to Java interface, returns a type specific instance of `java.nio.Buffer`.
* In Java add `GetBufferAsNativePointer` to Image class.
* Add `Image::GetSizeOfPixelComponent` method.
* Add `N4BiasFieldCorrectionImageFilter::GetLogBiasFieldAsImage` method.
* Ignore constant `Image::GetBufferAs...` methods, in wrapped languages.


New Features
------------

* Update ITK superbuild version to v5.2.0.
* Add new `ComposeScaleSkewVersor3DTransform` class.
* In Python, add support for ellipsis ("...") indexing to the `Image` class.
* In Python, add class dictionary like interface for the `Image`'s meta-data dictionary. This includes implementations for `__delitem__`, `__contains__`, and `__getitem__` with a string parameter.
* Updating style in examples using modern Python, moving from 2.7 to 3.6+.
* Add 4D ( and higher ) support for `PermuteImageFilter`.
* New `LoggerBase` and `ITKLogger` classes to interface and override ITK's output messages.
* Add output pixel type parameter to `ShiftScaleImageFilter`, to support arbitrary type conversion with intensity scaling.
* Add `sitkUInt8` mask image support to `MaskNegatedImageFilter`
* Enable the ITKIOTransformMINC module for xfm transform files
* Add `ImageRegistrationMethod::StopRegistration` method
* Add `StopRegistration` method to Demons based registration filters
* Update `HistogramMatchingImageFilter` to use named "referenceImage" input for second input image.

Bug Fixes
---------

* Set the default ITK multi-threader to "Platform" in Superbuild. This addressed issues with multi-processing and the Google Colaboratory environment.
* Update expected results for Linux ppc64le in test ImageRegistrationMethodDisplacement1 and SLICImageFilter.
* The `GetPixelAsComplexFloat64` Image method in Python is correctly renamed to `__GetPixelAsComplexFloat64__`.
* R calls to nonexistent methods are now handled gracefully
* In `BinaryMagnitudeImageFilter` test, changed type from UInt32 to Int32 for defined C++ behavior, fixed Mac ARM testing failure.



Documentation
-------------
* Add TCL, Ruby, Lua, R, Java, and C languages for the Image and Transform IO example and documentation.
* Add "Image Registration Optimizer Weights" example illustrating usage of optimizer weights.
* Document details on naming conventions and object oriented, procedural interfaces.
* Document importance of registration initialization and center of rotation docs.
* Document ComposeScaleSkewVersorTransform in Sphinx overviews.
* Fix broken link in filters list.
* Add "IO Selection" examples for CSharp, C++, Java, Lua, Ruby and TCL.
* Add example illustrating how to override ITK's messages with Python's logging module.
* Separate the GetPixel example into dynamic and statically typed languages.
* Update N4 example to use bias field at input resolution
* Update `ImageViewer::SetApplication` docs.* Minor grammar and spelling changes to gettingStarted
* Improve documentation for [registration sampling strategies](https://simpleitk.readthedocs.io/en/master/registrationOverview.html#sampling)
* Add example demonstration [Java Image buffer interface](https://simpleitk.readthedocs.io/en/master/link_JavaGetSetBuffer_docs.html)
* Add multiple language [examples for ImageIOSelection](https://simpleitk.readthedocs.io/en/master/link_ImageIOSelection_docs.html)
* Added a [Windows build page](https://simpleitk.readthedocs.io/en/master/buildingWindows.html)


Compilation
-----------

* CMake use "Ruby" find package. The CMake variable related to Ruby changed from "RUBY" prefix to "Ruby".
* Add test to echo CMakeCache.txt
* Replace virtualenv with venv
* Install wheel package to venv for packaging
* Use STEP_TARGETS option over EP Add_Step_Targets command
* Suppress MSVC getenv security warning.
* Set CMake Policy version to 3.10 in Superbuild
* Run HelloWorld examples when testing
* Fix comparison between signed and unsigned integer compiler warning
* Remove explicit instantiating of Image of deque of LabelObjectLine
* Update SWIG to 4 require in CMake find_package

2.1rc2

Announcement

Announcing the SimpleITK 2.1 Release Candidate 2!

Users and developers are encouraged to test the RC before the final release and report issues, bugs, and any compatibility problems.

Installing SimpleITK

Complete instructions on getting started with SimpleITK including downloading binaries or building SimpleITK can be found on the SimpleITK [Read the Docs web page](https://simpleitk.readthedocs.io/en/master/installation.html).

Python Binary Downloads

- Python binary wheels are available for download. It is important to have the latest version of pip for correct wheel compatibility and installation. To install the latest SimpleITK package from GitHub releases:

python -m pip install --upgrade pip
python -m pip install --pre SimpleITK --find-links https://github.com/SimpleITK/SimpleITK/releases/tag/v2.1rc2

Anaconda Binary Downloads

Conda packages are available from Anaconda Cloud on the `SimpleITK` channel. These can be installed with:

conda install -c simpleitk/label/dev simpleitk




Release Notes
============


New Features
------------

* Add `ImageRegistrationMethod::StopRegistration` method
* Add `StopRegistration` method to Demons based registration filters
* Update `HistogramMatchingImageFilter` to use named "referenceImage" input for second input image.


Bug Fixes
---------

* R calls to nonexistent methods are now handled gracefully
* In `BinaryMagnitudeImageFilter` test, changed type from UInt32 to Int32 for defined C++ behavior, fixed Mac ARM testing failure.



Documentation
-------------

* Minor grammar and spelling changes to gettingStarted
* Improve documentation for [registration sampling strategies](https://simpleitk.readthedocs.io/en/master/registrationOverview.html#sampling)
* Add example demonstration [Java Image buffer interface](https://simpleitk.readthedocs.io/en/master/link_JavaGetSetBuffer_docs.html)
* Add multiple language [examples for ImageIOSelection](https://simpleitk.readthedocs.io/en/master/link_ImageIOSelection_docs.html)
* Added a [Windows build page](https://simpleitk.readthedocs.io/en/master/buildingWindows.html)



Compilation
-----------

* Fix comparison between signed and unsigned integer compiler warning
* Remove explicit instantiating of Image of deque of LabelObjectLine
* Update SWIG to 4 require in CMake find_package

2.1rc1

Announcement

Announcing the SimpleITK 2.1 Release Candidate 1!

Users and developers are encouraged to test the RC before the final release and report issues, bugs, and any compatibility problems.

Installing SimpleITK

Complete instructions on getting started with SimpleITK including downloading binaries or building SimpleITK can be found on the SimpleITK [Read the Docs web page](https://simpleitk.readthedocs.io/en/master/installation.html).

Python Binary Downloads

- Python binary wheels are available for download. It is important to have the latest version of pip for correct wheel compatibility and installation. To install the latest SimpleITK package from GitHub releases:

python -m pip install --upgrade pip
python -m pip install --pre SimpleITK --find-links https://github.com/SimpleITK/SimpleITK/releases/tag/v2.1rc1

Anaconda Binary Downloads

Conda packages are available from Anaconda Cloud on the `SimpleITK` channel. These can be installed with:

conda install -c simpleitk/label/dev simpleitk


Apple M1 ARM Support

SimpleITK v2.1rc1 has been successfully compiled and tested on Apple OS X running native M1 ARM. Thanks to the ITK development team for providing the foundation.

For the v2.1 .0 final release, we are currently only planning to release M1 ARM binaries for the [conda-forge](https://github.com/conda-forge/simpleitk-feedstock) distribution.


Release Notes
============

API Changes
-----------

* Add `Image::getBufferAsByteBuffer` to Java interface, returns a type specific instance of `java.nio.Buffer`.
* In Java add `GetBufferAsNativePointer` to Image class.
* Add `Image::GetSizeOfPixelComponent` method.
* Add `N4BiasFieldCorrectionImageFilter::GetLogBiasFieldAsImage` method.
* Ignore constant `Image::GetBufferAs...` methods, in wrapped languages.


New Features
------------

* Update ITK superbuild version to v5.2.0.
* Add new `ComposeScaleSkewVersor3DTransform` class.
* In Python, add support for ellipsis ("...") indexing to the `Image` class.
* In Python, add class dictionary like interface for the `Image`'s meta-data dictionary. This includes implementations for `__delitem__`, `__contains__`, and `__getitem__` with a string parameter.
* Updating style in examples using modern Python, moving from 2.7 to 3.6+.
* Add 4D ( and higher ) support for `PermuteImageFilter`.
* New `LoggerBase` and `ITKLogger` classes to interface and override ITK's output messages.
* Add output pixel type parameter to `ShiftScaleImageFilter`, to support arbitrary type conversion with intensity scaling.
* Add `sitkUInt8` mask image support to `MaskNegatedImageFilter`
* Enable the ITKIOTransformMINC module for xfm transform files

Bug Fixes
---------

* Set the default ITK multi-threader to "Platform" in Superbuild. This addresssed issues with multi-processing and the Google Colaborratory environment.
* Update expected results for Linux ppc64le in test ImageRegistrationMethodDisplacement1 and SLICImageFilter.
* The `GetPixelAsComplexFloat64` Image method in Python is correctly renamed to `__GetPixelAsComplexFloat64__`.



Documentation
-------------
* Add TCL, Ruby, Lua, R, Java, and C languages for the Image and Transform IO example and documentation.
* Add "Image Registration Optimizer Weights" example illustrating usage of optimizer weights.
* Document details on naming conventions and object oriented, procedural interfaces.
* Document importance of registration initialization and center of rotation docs.
* Document ComposeScaleSkewVersorTransform in Sphinx overviews.
* Fix broken link in filters list.
* Add "IO Selection" examples for CSharp, C++, Java, Lua, Ruby and TCL.
* Add example illustrating how to override ITK's messages with Python's logging module.
* Separate the GetPixel example into dynamic and statically typed languages.
* Update N4 example to use bias field at input resolution
* Update `ImageViewer::SetApplication` docs.


Compilation
-----------

* CMake use "Ruby" find package. The CMake variable related to Ruby changed from "RUBY" prefix to "Ruby".
* Add test to echo CMakeCache.txt
* Replace virtualenv with venv
* Install wheel package to venv for packaging
* Use STEP_TARGETS option over EP Add_Step_Targets command
* Suppress MSVC getenv security warning.
* Set CMake Policy version to 3.10 in Superbuild
* Run HelloWorld examples when testing

2.0.2

Announcement

SimpleITK 2.0.2 has been released! The release provides minor patches for the 2.0 release to address bugs.

Additionally Python 3.9 is supported and "manylinux2010" wheels are provided. This addresses interoperability with other "manylinux2010" wheels reported in some environments [1252].



Installing SimpleITK

Complete instructions on getting started with SimpleITK including downloading binaries or building SimpleITK can be found on the SimpleITK [Read the Docs web page](https://simpleitk.readthedocs.io/en/master/gettingStarted.html).

Python Binary Downloads

- Python binary wheels are available for download from PyPI. It is important to have the latest version of pip for correct wheel compatibility and installation. To install the latest SimpleITK package:

python -m pip install --upgrade pip
python -m pip install SimpleITK


Anaconda Binary Downloads

Conda packages are available from Anaconda Cloud on the `SimpleITK` channel. These can be installed with:


conda install -c simple simpleitk


To learn more about SimpleITK go to [simpleitk.org](https://simpleitk.org/).


Bug Fixes
---------

- Fix return type for C to IntPtr for `Image::GetBufferAsVoid`, `Image::GetBufferAsUInt64` and `Image::GetBufferAsInt64` methods.
- Updated ITK to version 5.1.2
- Added Python 3.9 and manylinux2010 wheels with build scripts from 0da8a2.

2.0.1

Announcement

SimpleITK 2.0.1 has been released! The release provides minor patches for the 2.0 release to address bugs.



Installing SimpleITK

Complete instructions on getting started with SimpleITK including downloading binaries or building SimpleITK can be found on the SimpleITK [Read the Docs web page](https://simpleitk.readthedocs.io/en/master/gettingStarted.html).

Python Binary Downloads

- Python binary wheels are available for download from PyPI. It is important to have the latest version of pip for correct wheel compatibility and installation. To install the latest SimpleITK package:

python -m pip install --upgrade pip
python -m pip install SimpleITK


Anaconda Binary Downloads

Conda packages are available from Anaconda Cloud on the `SimpleITK` channel. These can be installed with:


conda install -c simple simpleitk


To learn more about SimpleITK go to [simpleitk.org](https://simpleitk.org/).


Bug Fixes
---------

- Update ITK version along 5.1 release branch
- Fix SignedMaurerDistanceMap divide by zero error (1213)
- Fix Python packaging description field content type (1202)
- Fix symbol conflict with importing `tensorflow` (1208, 1192)

Page 4 of 9

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.