ITK
4.8.0
Insight Segmentation and Registration Toolkit
|
#include <itkLabelStatisticsImageFilter.h>
Given an intensity image and a label map, compute min, max, variance and mean of the pixels associated with each label or segment.
LabelStatisticsImageFilter computes the minimum, maximum, sum, mean, median, variance and sigma of regions of an intensity image, where the regions are defined via a label map (a second input). The label image should be integral type. The filter needs all of its input image. It behaves as a filter with an input and output. Thus it can be inserted in a pipline with other filters and the statistics will only be recomputed if a downstream filter changes.
Optionally, the filter also computes intensity histograms on each object. If histograms are enabled, a median intensity value can also be computed, although its accuracy is limited to the bin width of the histogram. If histograms are not enabled, the median returns zero.
The filter passes its intensity input through unmodified. The filter is threaded. It computes statistics in each thread then combines them in its AfterThreadedGenerate method.
Definition at line 60 of file itkLabelStatisticsImageFilter.h.
Classes | |
class | LabelStatistics |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool flag) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes | |
static const unsigned int | ImageDimension = TInputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TInputImage > | |
static const unsigned int | InputImageDimension |
static const unsigned int | OutputImageDimension |
Static Public Attributes inherited from itk::ImageSource< TInputImage > | |
static const unsigned int | OutputImageDimension |
Private Member Functions | |
LabelStatisticsImageFilter (const Self &) | |
void | operator= (const Self &) |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TInputImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
Static Protected Member Functions inherited from itk::ImageSource< TInputImage > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_TYPE | ThreaderCallback (void *arg) |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
Protected Attributes inherited from itk::LightObject | |
AtomicInt< int > | m_ReferenceCount |
typedef std::vector< IndexValueType > itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::BoundingBoxType |
Bounding Box-related typedefs
Definition at line 105 of file itkLabelStatisticsImageFilter.h.
typedef SmartPointer< const Self > itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::ConstPointer |
Definition at line 68 of file itkLabelStatisticsImageFilter.h.
typedef DataObject::Pointer itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::DataObjectPointer |
Smart Pointer type to a DataObject.
Definition at line 99 of file itkLabelStatisticsImageFilter.h.
typedef HistogramType::Pointer itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::HistogramPointer |
Definition at line 109 of file itkLabelStatisticsImageFilter.h.
typedef itk::Statistics::Histogram< RealType > itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::HistogramType |
Histogram-related typedefs
Definition at line 108 of file itkLabelStatisticsImageFilter.h.
typedef TInputImage::IndexType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::IndexType |
Definition at line 80 of file itkLabelStatisticsImageFilter.h.
typedef TInputImage::Pointer itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::InputImagePointer |
Image related typedefs.
Definition at line 74 of file itkLabelStatisticsImageFilter.h.
typedef TLabelImage::Pointer itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::LabelImagePointer |
Definition at line 85 of file itkLabelStatisticsImageFilter.h.
typedef TLabelImage itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::LabelImageType |
Label image related typedefs.
Definition at line 84 of file itkLabelStatisticsImageFilter.h.
typedef TLabelImage::IndexType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::LabelIndexType |
Definition at line 88 of file itkLabelStatisticsImageFilter.h.
typedef TLabelImage::PixelType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::LabelPixelType |
Definition at line 89 of file itkLabelStatisticsImageFilter.h.
typedef TLabelImage::RegionType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::LabelRegionType |
Definition at line 86 of file itkLabelStatisticsImageFilter.h.
typedef TLabelImage::SizeType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::LabelSizeType |
Definition at line 87 of file itkLabelStatisticsImageFilter.h.
typedef itksys::hash_map< LabelPixelType, LabelStatistics >::const_iterator itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::MapConstIterator |
Definition at line 235 of file itkLabelStatisticsImageFilter.h.
typedef itksys::hash_map< LabelPixelType, LabelStatistics >::iterator itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::MapIterator |
Definition at line 234 of file itkLabelStatisticsImageFilter.h.
typedef IdentifierType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::MapSizeType |
Definition at line 236 of file itkLabelStatisticsImageFilter.h.
typedef itksys::hash_map< LabelPixelType, LabelStatistics > itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::MapType |
Type of the map used to store data per label
Definition at line 233 of file itkLabelStatisticsImageFilter.h.
typedef TInputImage::PixelType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::PixelType |
Definition at line 81 of file itkLabelStatisticsImageFilter.h.
typedef SmartPointer< Self > itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::Pointer |
Definition at line 67 of file itkLabelStatisticsImageFilter.h.
typedef SimpleDataObjectDecorator< RealType > itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::RealObjectType |
Type of DataObjects used for scalar outputs
Definition at line 102 of file itkLabelStatisticsImageFilter.h.
typedef NumericTraits< PixelType >::RealType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::RealType |
Type to use for computations.
Definition at line 96 of file itkLabelStatisticsImageFilter.h.
typedef TInputImage::RegionType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::RegionType |
Definition at line 78 of file itkLabelStatisticsImageFilter.h.
typedef LabelStatisticsImageFilter itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::Self |
Standard Self typedef
Definition at line 65 of file itkLabelStatisticsImageFilter.h.
typedef TInputImage::SizeType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::SizeType |
Definition at line 79 of file itkLabelStatisticsImageFilter.h.
typedef ImageToImageFilter< TInputImage, TInputImage > itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::Superclass |
Definition at line 66 of file itkLabelStatisticsImageFilter.h.
typedef std::vector<LabelPixelType> itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::ValidLabelValuesContainerType |
Type of the container used to store valid label values
Definition at line 239 of file itkLabelStatisticsImageFilter.h.
|
protected |
|
inlineprotected |
Definition at line 330 of file itkLabelStatisticsImageFilter.h.
|
private |
|
overrideprotectedvirtual |
Do final mean and variance computation from data accumulated in threads.
Reimplemented from itk::ImageSource< TInputImage >.
|
overrideprotectedvirtual |
Pass the input through unmodified. Do this by Grafting in the AllocateOutputs method.
Reimplemented from itk::ImageSource< TInputImage >.
|
overrideprotectedvirtual |
Initialize some accumulators before the threads run.
Reimplemented from itk::ImageSource< TInputImage >.
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::Object.
|
overrideprotectedvirtual |
Give the process object a chance to indictate that it will produce more output than it was requested to produce. For example, many imaging filters must compute the entire output at once or can only produce output in complete slices. Such filters cannot handle smaller requested regions. These filters must provide an implementation of this method, setting the output requested region to the size they will produce. By default, a process object does not modify the size of the output requested region.
Reimplemented from itk::ProcessObject.
BoundingBoxType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetBoundingBox | ( | LabelPixelType | label | ) | const |
Return the computed bounding box for a label.
MapSizeType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetCount | ( | LabelPixelType | label | ) | const |
Return the number of pixels for a label.
HistogramPointer itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetHistogram | ( | LabelPixelType | label | ) | const |
Return the histogram for a label
|
inline |
Get the label image
Definition at line 260 of file itkLabelStatisticsImageFilter.h.
References itk::ProcessObject::GetInput().
RealType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetMaximum | ( | LabelPixelType | label | ) | const |
Return the computed Maximum for a label.
RealType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetMean | ( | LabelPixelType | label | ) | const |
Return the computed Mean for a label.
RealType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetMedian | ( | LabelPixelType | label | ) | const |
Return the computed Median for a label. Requires histograms to be enabled!
RealType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetMinimum | ( | LabelPixelType | label | ) | const |
Return the computed Minimum for a label.
|
virtual |
Runtime information support.
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.
|
inline |
Definition at line 278 of file itkLabelStatisticsImageFilter.h.
References itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetNumberOfObjects().
|
inline |
Get the number of labels used
Definition at line 273 of file itkLabelStatisticsImageFilter.h.
References itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::m_LabelStatistics.
Referenced by itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetNumberOfLabels().
RegionType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetRegion | ( | LabelPixelType | label | ) | const |
Return the computed region.
RealType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetSigma | ( | LabelPixelType | label | ) | const |
Return the computed Standard Deviation for a label.
RealType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetSum | ( | LabelPixelType | label | ) | const |
Return the compute Sum for a label.
|
virtual |
|
inlinevirtual |
Definition at line 247 of file itkLabelStatisticsImageFilter.h.
References itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::m_ValidLabelValues.
RealType itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetVariance | ( | LabelPixelType | label | ) | const |
Return the computed Variance for a label.
|
inline |
Does the specified label exist? Can only be called after a call a call to Update().
Definition at line 267 of file itkLabelStatisticsImageFilter.h.
References itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::m_LabelStatistics.
|
static |
Method for creation through the object factory.
|
private |
|
overrideprotectedvirtual |
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.
void itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::SetHistogramParameters | ( | const int | numBins, |
RealType | lowerBound, | ||
RealType | upperBound | ||
) |
specify Histogram parameters
|
inline |
Set the label image
Definition at line 253 of file itkLabelStatisticsImageFilter.h.
References itk::ProcessObject::SetNthInput().
|
virtual |
|
overrideprotected |
Multi-thread version GenerateData.
itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::typedef | ( | Concept::HasNumericTraits< PixelType > | ) |
This class requires InputHasNumericTraitsCheck in the form of ( Concept::HasNumericTraits< PixelType > )
|
virtual |
|
virtual |
|
static |
Image related typedefs.
Definition at line 93 of file itkLabelStatisticsImageFilter.h.
Referenced by itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::LabelStatistics::LabelStatistics().
|
private |
Definition at line 357 of file itkLabelStatisticsImageFilter.h.
Referenced by itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetNumberOfObjects(), and itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::HasLabel().
|
private |
Definition at line 356 of file itkLabelStatisticsImageFilter.h.
|
private |
Definition at line 364 of file itkLabelStatisticsImageFilter.h.
|
private |
Definition at line 366 of file itkLabelStatisticsImageFilter.h.
|
private |
Definition at line 362 of file itkLabelStatisticsImageFilter.h.
|
private |
Definition at line 365 of file itkLabelStatisticsImageFilter.h.
|
private |
Definition at line 360 of file itkLabelStatisticsImageFilter.h.
|
private |
Definition at line 358 of file itkLabelStatisticsImageFilter.h.
Referenced by itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::GetValidLabelValues().