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 __itkConfidenceConnectedImageFilter_h
00018 #define __itkConfidenceConnectedImageFilter_h
00019
00020 #include "itkImage.h"
00021 #include "itkImageToImageFilter.h"
00022
00023 namespace itk {
00024
00056 template <class TInputImage, class TOutputImage>
00057 class ITK_EXPORT ConfidenceConnectedImageFilter:
00058 public ImageToImageFilter<TInputImage,TOutputImage>
00059 {
00060 public:
00062 typedef ConfidenceConnectedImageFilter Self;
00063 typedef ImageToImageFilter<TInputImage,TOutputImage> Superclass;
00064 typedef SmartPointer<Self> Pointer;
00065 typedef SmartPointer<const Self> ConstPointer;
00066
00068 itkNewMacro(Self);
00069
00071 itkTypeMacro(ConfidenceConnectedImageFilter,
00072 ImageToImageFilter);
00073
00074 typedef TInputImage InputImageType;
00075 typedef typename InputImageType::Pointer InputImagePointer;
00076 typedef typename InputImageType::RegionType InputImageRegionType;
00077 typedef typename InputImageType::PixelType InputImagePixelType;
00078 typedef typename InputImageType::IndexType IndexType;
00079 typedef typename InputImageType::SizeType SizeType;
00080
00081 typedef TOutputImage OutputImageType;
00082 typedef typename OutputImageType::Pointer OutputImagePointer;
00083 typedef typename OutputImageType::RegionType OutputImageRegionType;
00084 typedef typename OutputImageType::PixelType OutputImagePixelType;
00085
00086 typedef std::vector< IndexType > SeedsContainerType;
00087
00088 typedef typename NumericTraits<
00089 InputImagePixelType >::RealType InputRealType;
00090
00091
00092 void PrintSelf ( std::ostream& os, Indent indent ) const;
00093
00095 void SetSeed(const IndexType & seed);
00096
00098 void ClearSeeds();
00099
00101 void AddSeed(const IndexType & seed);
00102
00105 itkSetMacro(Multiplier, double);
00106 itkGetConstMacro(Multiplier, double);
00108
00110 itkSetMacro(NumberOfIterations, unsigned int);
00111 itkGetConstMacro(NumberOfIterations, unsigned int);
00113
00115 itkSetMacro(ReplaceValue, OutputImagePixelType);
00116 itkGetConstMacro(ReplaceValue, OutputImagePixelType);
00118
00121 itkSetMacro( InitialNeighborhoodRadius, unsigned int );
00122 itkGetConstReferenceMacro( InitialNeighborhoodRadius, unsigned int );
00124
00128 itkGetConstReferenceMacro( Mean, InputRealType );
00129
00133 itkGetConstReferenceMacro( Variance, InputRealType );
00134
00135 #ifdef ITK_USE_CONCEPT_CHECKING
00136
00137 itkConceptMacro(InputHasNumericTraitsCheck,
00138 (Concept::HasNumericTraits<InputImagePixelType>));
00139 itkConceptMacro(OutputHasNumericTraitsCheck,
00140 (Concept::HasNumericTraits<OutputImagePixelType>));
00141
00143 #endif
00144
00145 protected:
00146 ConfidenceConnectedImageFilter();
00147 ~ConfidenceConnectedImageFilter(){};
00148
00149
00150 void GenerateInputRequestedRegion();
00151
00152
00153 void EnlargeOutputRequestedRegion(DataObject *output);
00154
00155 void GenerateData();
00156
00157 private:
00158 ConfidenceConnectedImageFilter(const Self&);
00159 void operator=(const Self&);
00160
00161 SeedsContainerType m_Seeds;
00162 double m_Multiplier;
00163 unsigned int m_NumberOfIterations;
00164 OutputImagePixelType m_ReplaceValue;
00165 unsigned int m_InitialNeighborhoodRadius;
00166 InputRealType m_Mean;
00167 InputRealType m_Variance;
00168 };
00169
00170
00171 }
00172
00173 #ifndef ITK_MANUAL_INSTANTIATION
00174 #include "itkConfidenceConnectedImageFilter.txx"
00175 #endif
00176
00177 #endif
00178