00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
#ifndef __itkConnectedClosingImageFilter_h
00018
#define __itkConnectedClosingImageFilter_h
00019
00020
#include "itkImageToImageFilter.h"
00021
00022
namespace itk {
00023
00042
template<
class TInputImage,
class TOutputImage>
00043 class ITK_EXPORT GrayscaleConnectedClosingImageFilter :
00044
public ImageToImageFilter<TInputImage, TOutputImage>
00045 {
00046
public:
00048 typedef GrayscaleConnectedClosingImageFilter
Self;
00049
typedef ImageToImageFilter<TInputImage, TOutputImage>
00050 Superclass;
00051 typedef SmartPointer<Self> Pointer;
00052 typedef SmartPointer<const Self> ConstPointer;
00053
00055 typedef TInputImage
InputImageType;
00056 typedef TOutputImage
OutputImageType;
00057 typedef typename InputImageType::Pointer
InputImagePointer;
00058 typedef typename InputImageType::ConstPointer
InputImageConstPointer;
00059 typedef typename InputImageType::RegionType
InputImageRegionType;
00060 typedef typename InputImageType::PixelType
InputImagePixelType;
00061 typedef typename InputImageRegionType::IndexType
InputImageIndexType;
00062 typedef typename OutputImageType::Pointer
OutputImagePointer;
00063 typedef typename OutputImageType::ConstPointer
OutputImageConstPointer;
00064 typedef typename OutputImageType::RegionType
OutputImageRegionType;
00065 typedef typename OutputImageType::PixelType
OutputImagePixelType;
00066
00068
itkStaticConstMacro(InputImageDimension,
unsigned int,
00069 TInputImage::ImageDimension);
00070
itkStaticConstMacro(OutputImageDimension,
unsigned int,
00071 TOutputImage::ImageDimension);
00072
00074
itkNewMacro(
Self);
00075
00077
itkTypeMacro(GrayscaleConnectedClosingImageFilter,
00078
ImageToImageFilter);
00079
00081
itkSetMacro(Seed,
InputImageIndexType);
00082
itkGetMacro(Seed,
InputImageIndexType);
00083
00086
itkGetMacro(NumberOfIterationsUsed,
unsigned long);
00087
00088
protected:
00089 GrayscaleConnectedClosingImageFilter();
00090 ~GrayscaleConnectedClosingImageFilter() {};
00091
void PrintSelf(std::ostream& os,
Indent indent)
const;
00092
00096
void GenerateInputRequestedRegion() ;
00097
00099
void EnlargeOutputRequestedRegion(
DataObject *
itkNotUsed(output));
00100
00103
void GenerateData();
00104
00105
00106
private:
00107 GrayscaleConnectedClosingImageFilter(
const Self&);
00108
void operator=(
const Self&);
00109
00110
unsigned long m_NumberOfIterationsUsed;
00111
InputImageIndexType m_Seed;
00112
00113 } ;
00114
00115 }
00116
00117
#ifndef ITK_MANUAL_INSTANTIATION
00118
#include "itkGrayscaleConnectedClosingImageFilter.txx"
00119
#endif
00120
00121
#endif
00122
00123