#include <itkStatisticsImageFilter.h>
Inheritance diagram for itk::StatisticsImageFilter:
Public Types | |
typedef StatisticsImageFilter | Self |
typedef ImageToImageFilter< TInputImage, TInputImage > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef TInputImage::Pointer | InputImagePointer |
typedef TInputImage::RegionType | RegionType |
typedef TInputImage::SizeType | SizeType |
typedef TInputImage::IndexType | IndexType |
typedef TInputImage::PixelType | PixelType |
typedef NumericTraits< PixelType >::RealType | RealType |
Public Methods | |
virtual const char * | GetClassName () const |
itkStaticConstMacro (ImageDimension, unsigned int, TInputImage::ImageDimension) | |
virtual RealType | GetMinimum () |
virtual RealType | GetMaximum () |
virtual RealType | GetMean () |
virtual RealType | GetSigma () |
virtual RealType | GetVariance () |
virtual RealType | GetSum () |
Static Public Methods | |
Pointer | New () |
Protected Methods | |
StatisticsImageFilter () | |
~StatisticsImageFilter () | |
void | PrintSelf (std::ostream &os, Indent indent) const |
void | AllocateOutputs () |
void | BeforeThreadedGenerateData () |
void | AfterThreadedGenerateData () |
void | ThreadedGenerateData (const RegionType &outputRegionForThread, int threadId) |
void | GenerateInputRequestedRegion () |
void | EnlargeOutputRequestedRegion (DataObject *data) |
StatisticsImageFilter computes the minimum, maximum, sum, mean, variance sigma of an image. 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.
The filter passes its input through unmodified. The filter is threaded. It computes statistics in each thread then combines them in its AfterThreadedGenerate method.
Definition at line 42 of file itkStatisticsImageFilter.h.
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 50 of file itkStatisticsImageFilter.h. |
|
Definition at line 63 of file itkStatisticsImageFilter.h. |
|
Image related typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 59 of file itkStatisticsImageFilter.h. |
|
Definition at line 64 of file itkStatisticsImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 49 of file itkStatisticsImageFilter.h. |
|
Type to use form computations. Definition at line 71 of file itkStatisticsImageFilter.h. |
|
Definition at line 61 of file itkStatisticsImageFilter.h. |
|
Standard Self typedef Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 47 of file itkStatisticsImageFilter.h. |
|
Definition at line 62 of file itkStatisticsImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 48 of file itkStatisticsImageFilter.h. |
|
Definition at line 92 of file itkStatisticsImageFilter.h. References max. |
|
Definition at line 102 of file itkStatisticsImageFilter.h. |
|
Do final mean and variance computation from data accumulated in threads. Reimplemented from itk::ImageSource< TInputImage >. |
|
Pass the input through unmodified. Do this by Grafting in the AllocateOutputs method. Reimplemented from itk::ImageSource< TInputImage >. |
|
Initialize some accumulators before the threads run. Reimplemented from itk::ImageSource< TInputImage >. |
|
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. |
|
What is the input requested region that is required to produce the output requested region? By default, the largest possible region is always required but this is overridden in many subclasses. For instance, for an image processing filter where an output pixel is a simple function of an input pixel, the input requested region will be set to the output requested region. For an image processing filter where an output pixel is a function of the pixels in a neighborhood of an input pixel, then the input requested region will need to be larger than the output requested region (to avoid introducing artificial boundary conditions). This function should never request an input region that is outside the the input largest possible region (i.e. implementations of this method should crop the input requested region at the boundaries of the input largest possible region). Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. |
|
Runtime information support. Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. |
|
Return the computed Maximum. |
|
Return the computed Mean. |
|
Return the computed Minimum. |
|
Return the computed Standard Deviation. |
|
Return the compute Sum. |
|
Return the computed Variance. |
|
Image related typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. |
|
Method for creation through the object factory. Reimplemented from itk::Object. |
|
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 >. |
|
Multi-thread version GenerateData. |