itkGrayscaleMorphologicalClosingImageFilter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkGrayscaleMorphologicalClosingImageFilter_h
00018 #define __itkGrayscaleMorphologicalClosingImageFilter_h
00019
00020
00021
00022
00023 #include "itkConfigure.h"
00024
00025 #ifdef ITK_USE_CONSOLIDATED_MORPHOLOGY
00026 #include "itkOptGrayscaleMorphologicalClosingImageFilter.h"
00027 #else
00028
00029
00030 #include "itkImageToImageFilter.h"
00031
00032 namespace itk {
00033
00055 template<class TInputImage, class TOutputImage, class TKernel>
00056 class ITK_EXPORT GrayscaleMorphologicalClosingImageFilter :
00057 public ImageToImageFilter<TInputImage, TOutputImage>
00058 {
00059 public:
00061 typedef GrayscaleMorphologicalClosingImageFilter Self;
00062 typedef ImageToImageFilter<TInputImage, TOutputImage> Superclass;
00063 typedef SmartPointer<Self> Pointer;
00064 typedef SmartPointer<const Self> ConstPointer;
00065
00067 itkNewMacro(Self);
00068
00070 itkTypeMacro(GrayscaleMorphologicalClosingImageFilter,
00071 ImageToImageFilter);
00072
00073 typedef TInputImage InputImageType;
00074 typedef TOutputImage OutputImageType;
00075 typedef typename InputImageType::Pointer InputImagePointer;
00076 typedef typename OutputImageType::RegionType OutputImageRegionType;
00077
00079 typedef typename TInputImage::PixelType PixelType;
00080
00082 typedef TKernel KernelType;
00083
00085 itkSetMacro(Kernel, KernelType);
00086
00088 itkGetConstReferenceMacro(Kernel, KernelType);
00089
00091 itkStaticConstMacro(InputImageDimension, unsigned int,
00092 TInputImage::ImageDimension);
00093 itkStaticConstMacro(OutputImageDimension, unsigned int,
00094 TOutputImage::ImageDimension);
00095 itkStaticConstMacro(KernelDimension, unsigned int,
00096 TKernel::NeighborhoodDimension);
00098
00101 itkSetMacro(SafeBorder, bool);
00102 itkGetConstReferenceMacro(SafeBorder, bool);
00103 itkBooleanMacro(SafeBorder);
00105
00106 #ifdef ITK_USE_CONCEPT_CHECKING
00107
00108 itkConceptMacro(SameTypeCheck,
00109 (Concept::SameType<PixelType, typename TOutputImage::PixelType>));
00110 itkConceptMacro(SameDimensionCheck1,
00111 (Concept::SameDimension<InputImageDimension, OutputImageDimension>));
00112 itkConceptMacro(SameDimensionCheck2,
00113 (Concept::SameDimension<InputImageDimension, KernelDimension>));
00114 itkConceptMacro(InputLessThanComparableCheck,
00115 (Concept::LessThanComparable<PixelType>));
00116 itkConceptMacro(InputGreaterThanComparableCheck,
00117 (Concept::GreaterThanComparable<PixelType>));
00118 itkConceptMacro(KernelGreaterThanIntCheck,
00119 (Concept::GreaterThanComparable<typename TKernel::PixelType, int>));
00120
00122 #endif
00123
00124 protected:
00125 GrayscaleMorphologicalClosingImageFilter();
00126 ~GrayscaleMorphologicalClosingImageFilter() {};
00127 void PrintSelf(std::ostream& os, Indent indent) const;
00128
00132 void GenerateInputRequestedRegion();
00133
00135 void EnlargeOutputRequestedRegion(DataObject *itkNotUsed(output));
00136
00139 void GenerateData ();
00140
00141 private:
00142 GrayscaleMorphologicalClosingImageFilter(const Self&);
00143 void operator=(const Self&);
00144
00146 KernelType m_Kernel;
00147
00148 bool m_SafeBorder;
00149
00150 };
00151
00152 }
00153
00154 #ifndef ITK_MANUAL_INSTANTIATION
00155 #include "itkGrayscaleMorphologicalClosingImageFilter.txx"
00156 #endif
00157
00158 #endif
00159
00160 #endif
00161