#include <itkNaryMaximumImageFilter.h>
Inheritance diagram for itk::NaryMaximumImageFilter< TInputImage, TOutputImage >:


Public Types | |
| typedef NaryMaximumImageFilter | Self |
| typedef NaryFunctorImageFilter< TInputImage, TOutputImage, Functor::Maximum1< typename TInputImage::PixelType, typename TInputImage::PixelType > > | Superclass |
| typedef SmartPointer< Self > | Pointer |
| typedef SmartPointer< const Self > | ConstPointer |
Static Public Member Functions | |
| Pointer | New () |
Protected Member Functions | |
| NaryMaximumImageFilter () | |
| virtual | ~NaryMaximumImageFilter () |
This class is parametrized over the types of the input images and the type of the output image. Numeric conversions (castings) are done by the C++ defaults.
The pixel type of the output images must have a valid defintion of the operator<. This condition is required because internally this filter will perform an operation similar to:
const OutputPixelType query_value = static_cast<OutputPixelType>(pixel_from_input_n); if(current_maximum < query_value) { current_maximum = query_value; } (where current_maximum is also of type OutputPixelType)
for each of the n input images.
For example, this filter could be used directly to find a "maximum projection" of a series of images, often used in preliminary analysis of time-series data.
Definition at line 92 of file itkNaryMaximumImageFilter.h.
|
|||||
|
Reimplemented from itk::NaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >. Definition at line 105 of file itkNaryMaximumImageFilter.h. |
|
|||||
|
Reimplemented from itk::NaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >. Definition at line 104 of file itkNaryMaximumImageFilter.h. |
|
|||||
|
Standard class typedefs. Reimplemented from itk::NaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >. Definition at line 100 of file itkNaryMaximumImageFilter.h. |
|
|||||
|
Reimplemented from itk::NaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >. Definition at line 103 of file itkNaryMaximumImageFilter.h. |
|
|||||||||
|
Definition at line 111 of file itkNaryMaximumImageFilter.h. |
|
|||||||||
|
Definition at line 112 of file itkNaryMaximumImageFilter.h. |
|
|||||||||
|
Method for creation through the object factory. Reimplemented from itk::NaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >. |
1.3.5 written by Dimitri van Heesch,
© 1997-2000