Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itk::StatisticsImageFilter< TInputImage > Class Template Reference

Compute min. max, variance and mean of an Image. More...

#include <itkStatisticsImageFilter.h>

Inheritance diagram for itk::StatisticsImageFilter:

Inheritance graph
[legend]
Collaboration diagram for itk::StatisticsImageFilter< TInputImage >:

Collaboration graph
[legend]
List of all members.

Public Types

typedef StatisticsImageFilter Self
typedef ImageToImageFilter<
TInputImage, TInputImage > 
Superclass
typedef SmartPointer< SelfPointer
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)

Detailed Description

template<class TInputImage>
class itk::StatisticsImageFilter< TInputImage >

Compute min. max, variance and mean of an Image.

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.


Member Typedef Documentation

template<class TInputImage>
typedef SmartPointer<const Self> itk::StatisticsImageFilter< TInputImage >::ConstPointer
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.

Definition at line 50 of file itkStatisticsImageFilter.h.

template<class TInputImage>
typedef TInputImage::IndexType itk::StatisticsImageFilter< TInputImage >::IndexType
 

Definition at line 63 of file itkStatisticsImageFilter.h.

template<class TInputImage>
typedef TInputImage::Pointer itk::StatisticsImageFilter< TInputImage >::InputImagePointer
 

Image related typedefs.

Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.

Definition at line 59 of file itkStatisticsImageFilter.h.

template<class TInputImage>
typedef TInputImage::PixelType itk::StatisticsImageFilter< TInputImage >::PixelType
 

Definition at line 64 of file itkStatisticsImageFilter.h.

template<class TInputImage>
typedef SmartPointer<Self> itk::StatisticsImageFilter< TInputImage >::Pointer
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.

Definition at line 49 of file itkStatisticsImageFilter.h.

template<class TInputImage>
typedef NumericTraits<PixelType>::RealType itk::StatisticsImageFilter< TInputImage >::RealType
 

Type to use form computations.

Definition at line 71 of file itkStatisticsImageFilter.h.

template<class TInputImage>
typedef TInputImage::RegionType itk::StatisticsImageFilter< TInputImage >::RegionType
 

Definition at line 61 of file itkStatisticsImageFilter.h.

template<class TInputImage>
typedef StatisticsImageFilter itk::StatisticsImageFilter< TInputImage >::Self
 

Standard Self typedef

Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.

Definition at line 47 of file itkStatisticsImageFilter.h.

template<class TInputImage>
typedef TInputImage::SizeType itk::StatisticsImageFilter< TInputImage >::SizeType
 

Definition at line 62 of file itkStatisticsImageFilter.h.

template<class TInputImage>
typedef ImageToImageFilter<TInputImage,TInputImage> itk::StatisticsImageFilter< TInputImage >::Superclass
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.

Definition at line 48 of file itkStatisticsImageFilter.h.


Constructor & Destructor Documentation

template<class TInputImage>
itk::StatisticsImageFilter< TInputImage >::StatisticsImageFilter   [inline, protected]
 

Definition at line 92 of file itkStatisticsImageFilter.h.

References max.

template<class TInputImage>
itk::StatisticsImageFilter< TInputImage >::~StatisticsImageFilter   [inline, protected]
 

Definition at line 102 of file itkStatisticsImageFilter.h.


Member Function Documentation

template<class TInputImage>
void itk::StatisticsImageFilter< TInputImage >::AfterThreadedGenerateData   [protected, virtual]
 

Do final mean and variance computation from data accumulated in threads.

Reimplemented from itk::ImageSource< TInputImage >.

template<class TInputImage>
void itk::StatisticsImageFilter< TInputImage >::AllocateOutputs   [protected, virtual]
 

Pass the input through unmodified. Do this by Grafting in the AllocateOutputs method.

Reimplemented from itk::ImageSource< TInputImage >.

template<class TInputImage>
void itk::StatisticsImageFilter< TInputImage >::BeforeThreadedGenerateData   [protected, virtual]
 

Initialize some accumulators before the threads run.

Reimplemented from itk::ImageSource< TInputImage >.

template<class TInputImage>
void itk::StatisticsImageFilter< TInputImage >::EnlargeOutputRequestedRegion DataObject   data [protected, virtual]
 

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.

template<class TInputImage>
void itk::StatisticsImageFilter< TInputImage >::GenerateInputRequestedRegion   [protected, virtual]
 

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 >.

template<class TInputImage>
virtual const char* itk::StatisticsImageFilter< TInputImage >::GetClassName   const [virtual]
 

Runtime information support.

Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.

template<class TInputImage>
virtual RealType itk::StatisticsImageFilter< TInputImage >::GetMaximum   [virtual]
 

Return the computed Maximum.

template<class TInputImage>
virtual RealType itk::StatisticsImageFilter< TInputImage >::GetMean   [virtual]
 

Return the computed Mean.

template<class TInputImage>
virtual RealType itk::StatisticsImageFilter< TInputImage >::GetMinimum   [virtual]
 

Return the computed Minimum.

template<class TInputImage>
virtual RealType itk::StatisticsImageFilter< TInputImage >::GetSigma   [virtual]
 

Return the computed Standard Deviation.

template<class TInputImage>
virtual RealType itk::StatisticsImageFilter< TInputImage >::GetSum   [virtual]
 

Return the compute Sum.

template<class TInputImage>
virtual RealType itk::StatisticsImageFilter< TInputImage >::GetVariance   [virtual]
 

Return the computed Variance.

template<class TInputImage>
itk::StatisticsImageFilter< TInputImage >::itkStaticConstMacro ImageDimension   ,
unsigned    int,
TInputImage::ImageDimension   
 

Image related typedefs.

Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.

template<class TInputImage>
Pointer itk::StatisticsImageFilter< TInputImage >::New   [static]
 

Method for creation through the object factory.

Reimplemented from itk::Object.

template<class TInputImage>
void itk::StatisticsImageFilter< TInputImage >::PrintSelf std::ostream &    os,
Indent    indent
const [protected, virtual]
 

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 >.

template<class TInputImage>
void itk::StatisticsImageFilter< TInputImage >::ThreadedGenerateData const RegionType   outputRegionForThread,
int    threadId
[protected]
 

Multi-thread version GenerateData.


The documentation for this class was generated from the following file:
Generated at Fri May 21 01:41:40 2004 for ITK by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2000