Difference between revisions of "2014 Summer Project Week:Pluggable Label Statistics"
From NAMIC Wiki
Line 38: | Line 38: | ||
** [http://www.itk.org/Doxygen45/html/classitk_1_1LabelGeometryImageFilter.html LabelGeometryImageFilter] (ITK only, in review); label only: volume, centroid, eigenvalues, eigenvectors, axes lenghts, eccentricity, elongation, orientation, bounding box, oriented bounding box, and rotation matrix; label and greyscale: integrated intensity and weighted centroid, which are measured on an intensity image under the labeled mask. | ** [http://www.itk.org/Doxygen45/html/classitk_1_1LabelGeometryImageFilter.html LabelGeometryImageFilter] (ITK only, in review); label only: volume, centroid, eigenvalues, eigenvectors, axes lenghts, eccentricity, elongation, orientation, bounding box, oriented bounding box, and rotation matrix; label and greyscale: integrated intensity and weighted centroid, which are measured on an intensity image under the labeled mask. | ||
** [http://www.itk.org/Doxygen/html/classitk_1_1ShapeLabelObject.html ShapeLabelObject]: ([http://www.itk.org/SimpleITKDoxygen/html/classitk_1_1simple_1_1LabelShapeStatisticsImageFilter.html also in SITK]) label only (roundness, flatness, perimeter) | ** [http://www.itk.org/Doxygen/html/classitk_1_1ShapeLabelObject.html ShapeLabelObject]: ([http://www.itk.org/SimpleITKDoxygen/html/classitk_1_1simple_1_1LabelShapeStatisticsImageFilter.html also in SITK]) label only (roundness, flatness, perimeter) | ||
− | ** [http://www.itk.org/Doxygen45/html/classitk_1_1StatisticsLabelObject.html StatisticsLabelObject]: greyscale features. | + | ** [http://www.itk.org/Doxygen45/html/classitk_1_1StatisticsLabelObject.html StatisticsLabelObject]: greyscale features (not in SITK). |
* [https://github.com/QIICR/ProjectIssuesAndWiki/wiki/Quantitative-Indices-Extension PET Quantitative indices] | * [https://github.com/QIICR/ProjectIssuesAndWiki/wiki/Quantitative-Indices-Extension PET Quantitative indices] | ||
** Slicer CLI module | ** Slicer CLI module |
Revision as of 15:39, 26 June 2014
Home < 2014 Summer Project Week:Pluggable Label StatisticsKey Investigators
- Andrey Fedorov, BWH
- Ethan Ulrich, Univ. of Iowa
- Steve Pieper, Isomics
- Bradley Lowekamp, NIH
Project Description
Objective
Our aim is to develop an module for calculating various statistical measures over image ROI that expands upon the currently available capabilities of Slicer LabelStatistics module. Some of the desired features include:
- pluggable set of "feature" calculators
- "jump to label" feature
- support of terminologies defining the features
- what else?
Approach, Plan
- determine requirements of the module
- discuss the options for implementing pluggable list of features
- define a category for feature calculators? or create wrappers and add them manually?
- discuss how we can pass semantical information associated with the feature sets (terminology), should this be done at the SEM level?
- consider Landmark Registration extension for how to use extensible features
- consider using Reporting extension
- integrate quantitative features implemented in PET Quantitative indices extension
Progress
- ITK/SimpleITK
- LabelStatisticsImageFilter: (available from SITK) minimum, maximum, sum, mean, median, variance and sigma of regions of an intensity image, where the regions are defined via a label map. Optionally, the filter also computes intensity histograms on each object. If histograms are enabled, a median intensity value can also be computed.
- LabelGeometryImageFilter (ITK only, in review); label only: volume, centroid, eigenvalues, eigenvectors, axes lenghts, eccentricity, elongation, orientation, bounding box, oriented bounding box, and rotation matrix; label and greyscale: integrated intensity and weighted centroid, which are measured on an intensity image under the labeled mask.
- ShapeLabelObject: (also in SITK) label only (roundness, flatness, perimeter)
- StatisticsLabelObject: greyscale features (not in SITK).
- PET Quantitative indices
- Slicer CLI module
- implements basic statistical measures plus PET-specific (glycolysis quartiles, total lesion glycolysis, SAM)
- Jay/Vivek Heterogeneity Analysis module
- Superset of features available in ITK (?) - source code will be available in 1-2 weeks
- implemented in numpy, not yet modularized
- Hugo Aerts quantitative features
- currently in Matlab
- to be ported to python
- source code not available yet