ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
#include <itkMinimumMaximumImageFilter.h>
Computes the minimum and the maximum intensity values of an image.
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 44 of file itkMinimumMaximumImageFilter.h.
Static Public Member Functions | |
static Pointer | New () |
Static Public Attributes | |
static const unsigned int | InputImageDimension = TInputImage::ImageDimension |
static const unsigned int | OutputImageDimension = TInputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TInputImage > | |
static const unsigned int | InputImageDimension |
static const unsigned int | OutputImageDimension |
Static Public Attributes inherited from itk::ImageSource< TInputImage > | |
static const unsigned int | OutputImageDimension |
Private Member Functions | |
MinimumMaximumImageFilter (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
std::vector< PixelType > | m_ThreadMax |
std::vector< PixelType > | m_ThreadMin |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TInputImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
Static Protected Member Functions inherited from itk::ImageSource< TInputImage > | |
static ITK_THREAD_RETURN_TYPE | ThreaderCallback (void *arg) |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
typedef SmartPointer< const Self > itk::MinimumMaximumImageFilter< TInputImage >::ConstPointer |
Definition at line 59 of file itkMinimumMaximumImageFilter.h.
typedef DataObject::Pointer itk::MinimumMaximumImageFilter< TInputImage >::DataObjectPointer |
Smart Pointer type to a DataObject.
Definition at line 70 of file itkMinimumMaximumImageFilter.h.
typedef ProcessObject::DataObjectPointerArraySizeType itk::MinimumMaximumImageFilter< TInputImage >::DataObjectPointerArraySizeType |
Make a DataObject of the correct type to be used as the specified output.
Definition at line 102 of file itkMinimumMaximumImageFilter.h.
typedef TInputImage::IndexType itk::MinimumMaximumImageFilter< TInputImage >::IndexType |
Definition at line 66 of file itkMinimumMaximumImageFilter.h.
typedef TInputImage::Pointer itk::MinimumMaximumImageFilter< TInputImage >::InputImagePointer |
Image related typedefs.
Definition at line 62 of file itkMinimumMaximumImageFilter.h.
typedef TInputImage itk::MinimumMaximumImageFilter< TInputImage >::InputImageType |
Image typedef support.
Definition at line 76 of file itkMinimumMaximumImageFilter.h.
typedef SimpleDataObjectDecorator< PixelType > itk::MinimumMaximumImageFilter< TInputImage >::PixelObjectType |
Type of DataObjects used for scalar outputs
Definition at line 82 of file itkMinimumMaximumImageFilter.h.
typedef TInputImage::PixelType itk::MinimumMaximumImageFilter< TInputImage >::PixelType |
Definition at line 67 of file itkMinimumMaximumImageFilter.h.
typedef SmartPointer< Self > itk::MinimumMaximumImageFilter< TInputImage >::Pointer |
Definition at line 58 of file itkMinimumMaximumImageFilter.h.
typedef TInputImage::RegionType itk::MinimumMaximumImageFilter< TInputImage >::RegionType |
Definition at line 64 of file itkMinimumMaximumImageFilter.h.
typedef MinimumMaximumImageFilter itk::MinimumMaximumImageFilter< TInputImage >::Self |
Standard class typedefs.
Definition at line 56 of file itkMinimumMaximumImageFilter.h.
typedef TInputImage::SizeType itk::MinimumMaximumImageFilter< TInputImage >::SizeType |
Definition at line 65 of file itkMinimumMaximumImageFilter.h.
typedef ImageToImageFilter< TInputImage, TInputImage > itk::MinimumMaximumImageFilter< TInputImage >::Superclass |
Definition at line 57 of file itkMinimumMaximumImageFilter.h.
|
protected |
End concept checking
|
inlineprotectedvirtual |
Definition at line 120 of file itkMinimumMaximumImageFilter.h.
|
private |
|
protectedvirtual |
Do final mean and variance computation from data accumulated in threads.
Reimplemented from itk::ImageSource< TInputImage >.
|
protectedvirtual |
Pass the input through unmodified. Do this by Grafting in the AllocateOutputs method.
Reimplemented from itk::ImageSource< TInputImage >.
|
protectedvirtual |
Initialize some accumulators before the threads run.
Reimplemented from itk::ImageSource< TInputImage >.
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::Object.
|
protectedvirtual |
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.
|
protectedvirtual |
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 hierarchy. 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 >.
|
inline |
Return the computed Maximum.
Definition at line 93 of file itkMinimumMaximumImageFilter.h.
PixelObjectType* itk::MinimumMaximumImageFilter< TInputImage >::GetMaximumOutput | ( | ) |
Return the computed Maximum.
const PixelObjectType* itk::MinimumMaximumImageFilter< TInputImage >::GetMaximumOutput | ( | ) | const |
|
inline |
Return the computed Minimum.
Definition at line 85 of file itkMinimumMaximumImageFilter.h.
PixelObjectType* itk::MinimumMaximumImageFilter< TInputImage >::GetMinimumOutput | ( | ) |
Return the computed Minimum.
const PixelObjectType* itk::MinimumMaximumImageFilter< TInputImage >::GetMinimumOutput | ( | ) | const |
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.
|
virtual |
Make a DataObject of the correct type to used as the specified output. Every ProcessObject subclass must be able to create a DataObject that can be used as a specified output. This method is automatically called when DataObject::DisconnectPipeline() is called. DataObject::DisconnectPipeline, disconnects a data object from being an output of its current source. When the data object is disconnected, the ProcessObject needs to construct a replacement output data object so that the ProcessObject is in a valid state. So DataObject::DisconnectPipeline eventually calls ProcessObject::MakeOutput. Note that MakeOutput always returns a itkSmartPointer to a DataObject. ImageSource and MeshSource override this method to create the correct type of image and mesh respectively. If a filter has multiple outputs of different types, then that filter must provide an implementation of MakeOutput().
Reimplemented from itk::ImageSource< TInputImage >.
|
static |
Method for creation through the object factory.
|
private |
|
protectedvirtual |
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 >.
|
protected |
Multi-thread version GenerateData.
itk::MinimumMaximumImageFilter< TInputImage >::typedef | ( | Concept::LessThanComparable< PixelType > | ) |
Begin concept checking This class requires LessThanComparableCheck in the form of ( Concept::LessThanComparable< PixelType > )
itk::MinimumMaximumImageFilter< TInputImage >::typedef | ( | Concept::GreaterThanComparable< PixelType > | ) |
This class requires GreaterThanComparableCheck in the form of ( Concept::GreaterThanComparable< PixelType > )
itk::MinimumMaximumImageFilter< TInputImage >::typedef | ( | Concept::OStreamWritable< PixelType > | ) |
This class requires OStreamWritableCheck in the form of ( Concept::OStreamWritable< PixelType > )
|
static |
Extract dimension from input image.
Definition at line 50 of file itkMinimumMaximumImageFilter.h.
|
private |
Definition at line 150 of file itkMinimumMaximumImageFilter.h.
|
private |
Definition at line 149 of file itkMinimumMaximumImageFilter.h.
|
static |
Extract dimension from input image.
Definition at line 52 of file itkMinimumMaximumImageFilter.h.