#include <itkMinimumMaximumImageFilter.h>
Inheritance diagram for itk::MinimumMaximumImageFilter< TInputImage >:
Public Types | |
typedef MinimumMaximumImageFilter | 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 DataObject::Pointer | DataObjectPointer |
typedef TInputImage | InputImageType |
typedef SimpleDataObjectDecorator< PixelType > | PixelObjectType |
Public Member Functions | |
virtual const char * | GetNameOfClass () const |
virtual DataObjectPointer | MakeOutput (unsigned int idx) |
itkStaticConstMacro (InputImageDimension, unsigned int, TInputImage::ImageDimension) | |
itkStaticConstMacro (OutputImageDimension, unsigned int, TInputImage::ImageDimension) | |
PixelType | GetMinimum () const |
PixelObjectType * | GetMinimumOutput () |
const PixelObjectType * | GetMinimumOutput () const |
PixelType | GetMaximum () const |
PixelObjectType * | GetMaximumOutput () |
const PixelObjectType * | GetMaximumOutput () const |
Static Public Member Functions | |
Pointer | New () |
Protected Member Functions | |
MinimumMaximumImageFilter () | |
virtual | ~MinimumMaximumImageFilter () |
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) |
It is templated over input image type only. This filter just copies the input image through this output to be included within the pipeline. The implementation uses the StatisticsImageFilter.
Definition at line 42 of file itkMinimumMaximumImageFilter.h.
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 57 of file itkMinimumMaximumImageFilter.h. |
|
Smart Pointer type to a DataObject. Reimplemented from itk::ImageSource< TInputImage >. Definition at line 68 of file itkMinimumMaximumImageFilter.h. Referenced by itk::MinimumMaximumImageFilter< TInputImage >::GetMaximum(). |
|
Definition at line 64 of file itkMinimumMaximumImageFilter.h. |
|
Image related typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 60 of file itkMinimumMaximumImageFilter.h. |
|
Image typedef support. Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 77 of file itkMinimumMaximumImageFilter.h. |
|
Type of DataObjects used for scalar outputs Definition at line 80 of file itkMinimumMaximumImageFilter.h. Referenced by itk::MinimumMaximumImageFilter< TInputImage >::GetMaximum(). |
|
Definition at line 65 of file itkMinimumMaximumImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 56 of file itkMinimumMaximumImageFilter.h. |
|
Definition at line 62 of file itkMinimumMaximumImageFilter.h. |
|
Standard class typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 54 of file itkMinimumMaximumImageFilter.h. |
|
Definition at line 63 of file itkMinimumMaximumImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 55 of file itkMinimumMaximumImageFilter.h. |
|
|
|
Definition at line 102 of file itkMinimumMaximumImageFilter.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? The base assumption for image processing filters is that the input requested region can be set to match the output requested region. If a filter requires more input (for instance a filter that uses neighborhoods needs more input than output to avoid introducing artificial boundary conditions) or less input (for instance a magnify filter) will have to override this method. In doing so, it should call its superclass' implementation as its first step. Note that imaging filters operate differently than the classes to this point in the class hierachy. Up till now, the base assumption has been that the largest possible region will be requested of the input. This implementation of GenerateInputRequestedRegion() only processes the inputs that are a subclass of the ImageBase<InputImageDimension>. If an input is another type of DataObject (including an Image of a different dimension), they are skipped by this method. The subclasses of ImageToImageFilter are responsible for providing an implementation of GenerateInputRequestedRegion() when there are multiple inputs of different types.
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. |
|
Return the computed Maximum. Definition at line 90 of file itkMinimumMaximumImageFilter.h. References itk::MinimumMaximumImageFilter< TInputImage >::DataObjectPointer, and itk::MinimumMaximumImageFilter< TInputImage >::PixelObjectType. |
|
Return the computed Maximum. |
|
Return the computed Maximum. |
|
Return the computed Minimum. Definition at line 83 of file itkMinimumMaximumImageFilter.h. |
|
Return the computed Minimum. |
|
Return the computed Minimum. |
|
Run-time type information (and related methods). Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. |
|
Extract dimension from input image. Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. |
|
Extract dimension from input image. Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. |
|
Make a DataObject of the correct type to be used as the specified output. Reimplemented from itk::ImageSource< 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. |