ITK
ITK copied to clipboard
Insight Toolkit (ITK) -- Official Repository. ITK builds on a proven, spatially-oriented architecture for processing, segmentation, and registration of scientific images in two, three, or more dimens...
The `itkMemoryProbesCollecterBaseTest` fails on macOS, at least in some conditions, ex: https://open.cdash.org/tests/1690707341 where it gives: ``` Freeing memory should result in less memory but it is 262216kB instead of 262164kB...
- Follow-up to pull request #4815
Both `FrequencyImageRegionIteratorWithIndex` and `FrequencyImageRegionConstIteratorWithIndex` appear unused and untested. Attempts to use them would trigger compile errors. An attempt to use `FrequencyImageRegionIteratorWithIndex` triggered: error C3210: 'ImageRegionIteratorWithIndex': a member using-declaration can only...
Further to some discussions in https://github.com/InsightSoftwareConsortium/ITK/pull/4647 and https://github.com/InsightSoftwareConsortium/ITK/pull/4521, we still have a situation that isn't quite clear to us, and since those are merged already, we thought we'd create a...
This PR is a WIP, and more details will be added here when ready for discussion and review. See #4788 for this issue and discussion of these changes.
There is no Downloads section for this release. These tarballs aren't available: InsightToolkit-5.4.0.tar.gz InsightData-5.4.0.tar.gz
The class provides anatomical orientation based enums for describing coordinate systems. In ITK the physical coordinate systems is the same as the DICOM standard. DICOM has the following specification: If...
The definitions of the coordinate terms in SpatialOrientationEnums is as follows: ``` Coordinate orientation codes have a place-value organization such that an ImageDimension-al sequence of subcodes says both which varies...
The `const` overload of `Object::AddObserver` can serve both "const" and "non-const" instances of and references to an `itk::Object`, so the non-const overload should not be necessary. Note: this is an...
Best practices are to set member variables as object, and not repeat accessor methods in the interface of the owning object e.g. AddSeed, ClearSeed. ## PR Checklist - [ ]...