00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
#ifndef __itkVectorConfidenceConnectedImageFilter_h
00018
#define __itkVectorConfidenceConnectedImageFilter_h
00019
00020
#include "itkImage.h"
00021
#include "itkImageToImageFilter.h"
00022
#include "itkMahalanobisDistanceThresholdImageFunction.h"
00023
00024
namespace itk{
00025
00057
template <
class TInputImage,
class TOutputImage>
00058 class ITK_EXPORT VectorConfidenceConnectedImageFilter:
00059
public ImageToImageFilter<TInputImage,TOutputImage>
00060 {
00061
public:
00063
typedef VectorConfidenceConnectedImageFilter
Self;
00064 typedef ImageToImageFilter<TInputImage,TOutputImage> Superclass;
00065 typedef SmartPointer<Self> Pointer;
00066 typedef SmartPointer<const Self> ConstPointer;
00067
00069
itkNewMacro(
Self);
00070
00072
itkTypeMacro(VectorConfidenceConnectedImageFilter,
00073
ImageToImageFilter);
00074
00075
typedef TInputImage
InputImageType;
00076 typedef typename InputImageType::Pointer
InputImagePointer;
00077 typedef typename InputImageType::RegionType
InputImageRegionType;
00078 typedef typename InputImageType::PixelType
InputImagePixelType;
00079 typedef typename InputImageType::IndexType
IndexType;
00080 typedef typename InputImageType::SizeType
SizeType;
00081
00082
typedef TOutputImage
OutputImageType;
00083 typedef typename OutputImageType::Pointer
OutputImagePointer;
00084 typedef typename OutputImageType::RegionType
OutputImageRegionType;
00085 typedef typename OutputImageType::PixelType
OutputImagePixelType;
00086
00087
typedef std::vector< IndexType >
SeedsContainerType;
00088
00089
typedef MahalanobisDistanceThresholdImageFunction<
00090
InputImageType >
00091
DistanceThresholdFunctionType;
00092
00093
typedef typename DistanceThresholdFunctionType::CovarianceMatrixType
CovarianceMatrixType;
00094 typedef typename DistanceThresholdFunctionType::MeanVectorType
MeanVectorType;
00095
00096
00097
typedef typename DistanceThresholdFunctionType::Pointer
DistanceThresholdFunctionPointer;
00098
00099
void PrintSelf ( std::ostream& os,
Indent indent )
const;
00100
00102
void SetSeed(
const IndexType & seed)
00103 {
00104 m_Seeds.clear();
00105 this->AddSeed( seed );
00106 };
00107
00108
00110
void AddSeed(
const IndexType & seed)
00111 {
00112 m_Seeds.push_back( seed );
00113 this->Modified();
00114 };
00115
00118
itkSetMacro(Multiplier,
double);
00119
itkGetMacro(Multiplier,
double);
00120
00122
itkSetMacro(NumberOfIterations,
unsigned int);
00123
itkGetMacro(NumberOfIterations,
unsigned int);
00124
00126
itkSetMacro(ReplaceValue, OutputImagePixelType);
00127
itkGetMacro(ReplaceValue, OutputImagePixelType);
00128
00131
itkSetMacro( InitialNeighborhoodRadius,
unsigned int );
00132
itkGetConstReferenceMacro( InitialNeighborhoodRadius,
unsigned int );
00133
00135
const MeanVectorType & GetMean() const;
00136
00138 const CovarianceMatrixType & GetCovariance() const;
00139
00140
00141 protected:
00142 VectorConfidenceConnectedImageFilter();
00143
00144
00145
00146
void GenerateInputRequestedRegion();
00147
00148
00149
void EnlargeOutputRequestedRegion(
DataObject *output);
00150
00151
void GenerateData();
00152
00153 private:
00154 VectorConfidenceConnectedImageFilter(const Self&);
00155
void operator=(const Self&);
00156
00157 SeedsContainerType m_Seeds;
00158
double m_Multiplier;
00159
unsigned int m_NumberOfIterations;
00160 OutputImagePixelType m_ReplaceValue;
00161
unsigned int m_InitialNeighborhoodRadius;
00162
00163 DistanceThresholdFunctionPointer m_ThresholdFunction;
00164
00165 };
00166
00167
00168 }
00169
00170 #ifndef ITK_MANUAL_INSTANTIATION
00171 #include "itkVectorConfidenceConnectedImageFilter.txx"
00172 #endif
00173
00174 #endif