#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 | InputImageType |
typedef InputImageType::PixelType | InputPixelType |
Public Member Functions | |
virtual const char * | GetClassName () const |
virtual InputPixelType | GetMinimum () |
virtual InputPixelType | GetMaximum () |
itkStaticConstMacro (InputImageDimension, unsigned int, TInputImage::ImageDimension) | |
itkStaticConstMacro (OutputImageDimension, unsigned int, TInputImage::ImageDimension) | |
Static Public Member Functions | |
Pointer | New () |
Protected Member Functions | |
MinimumMaximumImageFilter () | |
virtual | ~MinimumMaximumImageFilter () |
void | PrintSelf (std::ostream &os, Indent indent) const |
void | GenerateData () |
It is templated over input image type only. This filter just copy the input image through this output to be included within the pipeline.
Definition at line 37 of file itkMinimumMaximumImageFilter.h.
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 52 of file itkMinimumMaximumImageFilter.h. |
|
Image typedef support. Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 61 of file itkMinimumMaximumImageFilter.h. |
|
Definition at line 62 of file itkMinimumMaximumImageFilter.h. Referenced by itk::MinimumMaximumImageFilter< TInputImage >::~MinimumMaximumImageFilter(). |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 51 of file itkMinimumMaximumImageFilter.h. |
|
Standard class typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 49 of file itkMinimumMaximumImageFilter.h. Referenced by itk::MinimumMaximumImageFilter< TInputImage >::~MinimumMaximumImageFilter(). |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >. Definition at line 50 of file itkMinimumMaximumImageFilter.h. |
|
Definition at line 71 of file itkMinimumMaximumImageFilter.h. |
|
Definition at line 76 of file itkMinimumMaximumImageFilter.h. References itk::MinimumMaximumImageFilter< TInputImage >::InputPixelType, and itk::MinimumMaximumImageFilter< TInputImage >::Self. |
|
A version of GenerateData() specific for image processing filters. This implementation will split the processing across multiple threads. The buffer is allocated by this method. Then the BeforeThreadedGenerateData() method is called (if provided). Then, a series of threads are spawned each calling ThreadedGenerateData(). After all the threads have completed processing, the AfterThreadedGenerateData() method is called (if provided). If an image processing filter cannot be threaded, the filter should provide an implementation of GenerateData(). That implementation is responsible for allocating the output buffer. If a filter an be threaded, it should NOT provide a GenerateData() method but should provide a ThreadedGenerateData() instead.
Reimplemented from itk::ImageSource< TInputImage >.
|
|
Run-time type information (and related methods). Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.
|
|
Return the maximum intensity value. |
|
Return the minimum intensity value. |
|
Extract dimension from input image. Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.
|
|
Extract dimension from input image. 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 >.
|