InsightSoftwareConsortium / ITK

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 dimensions.
https://itk.org
Apache License 2.0
1.37k stars 660 forks source link

Wrap SpatialObjectToImageStatisticsCalculator for Python #4689

Open auneri opened 1 month ago

auneri commented 1 month ago

Description

As of ITK 5.4, itk::SpatialObjectToImageStatisticsCalculator is not exposed via the Python interface.

Expected behavior

It would be great to access it as itk.SpatialObjectToImageStatisticsCalculator or, better yet, itk.spatial_object_to_image_statistics_calculator.

Actual behavior

One possible workaround involves first using SpatialObjectToImageFilter to convert the spatial object to a label image and using LabelStatisticsImageFilter for measurements, which can be computationally costly for large images.

Additional Information