00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkHMaximaImageFilter_h
00018 #define __itkHMaximaImageFilter_h
00019
00020 #include "itkImageToImageFilter.h"
00021
00022 namespace itk {
00023
00052 template<class TInputImage, class TOutputImage>
00053 class ITK_EXPORT HMaximaImageFilter :
00054 public ImageToImageFilter<TInputImage, TOutputImage>
00055 {
00056 public:
00058 typedef HMaximaImageFilter Self;
00059 typedef ImageToImageFilter<TInputImage, TOutputImage>
00060 Superclass;
00061 typedef SmartPointer<Self> Pointer;
00062 typedef SmartPointer<const Self> ConstPointer;
00063
00065 typedef TInputImage InputImageType;
00066 typedef TOutputImage OutputImageType;
00067 typedef typename InputImageType::Pointer InputImagePointer;
00068 typedef typename InputImageType::ConstPointer InputImageConstPointer;
00069 typedef typename InputImageType::RegionType InputImageRegionType;
00070 typedef typename InputImageType::PixelType InputImagePixelType;
00071 typedef typename OutputImageType::Pointer OutputImagePointer;
00072 typedef typename OutputImageType::ConstPointer OutputImageConstPointer;
00073 typedef typename OutputImageType::RegionType OutputImageRegionType;
00074 typedef typename OutputImageType::PixelType OutputImagePixelType;
00075
00077 itkStaticConstMacro(InputImageDimension, unsigned int,
00078 TInputImage::ImageDimension);
00079 itkStaticConstMacro(OutputImageDimension, unsigned int,
00080 TOutputImage::ImageDimension);
00081
00083 itkNewMacro(Self);
00084
00086 itkTypeMacro(HMaximaImageFilter,
00087 ImageToImageFilter);
00088
00093 itkSetMacro(Height, InputImagePixelType);
00094 itkGetMacro(Height, InputImagePixelType);
00095
00100 unsigned long GetNumberOfIterationsUsed()
00101 { itkLegacyBody(itk::HMaximaImageFilter::GetNumberOfIterationsUsed, 2.2);
00102 return m_NumberOfIterationsUsed; };
00103
00110 itkSetMacro(FullyConnected, bool);
00111 itkGetConstReferenceMacro(FullyConnected, bool);
00112 itkBooleanMacro(FullyConnected);
00113
00114 protected:
00115 HMaximaImageFilter();
00116 ~HMaximaImageFilter() {};
00117 void PrintSelf(std::ostream& os, Indent indent) const;
00118
00122 void GenerateInputRequestedRegion() ;
00123
00125 void EnlargeOutputRequestedRegion(DataObject *itkNotUsed(output));
00126
00129 void GenerateData();
00130
00131
00132 private:
00133 HMaximaImageFilter(const Self&);
00134 void operator=(const Self&);
00135
00136 InputImagePixelType m_Height;
00137 unsigned long m_NumberOfIterationsUsed;
00138 bool m_FullyConnected;
00139 } ;
00140
00141 }
00142
00143 #ifndef ITK_MANUAL_INSTANTIATION
00144 #include "itkHMaximaImageFilter.txx"
00145 #endif
00146
00147 #endif
00148
00149