ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkConfidenceConnectedSegmentationModule.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Insight Segmentation & Registration Toolkit
4  Module: itkConfidenceConnectedSegmentationModule.h
5  Language: C++
6  Date: $Date$
7  Version: $Revision$
8 
9  Copyright (c) Insight Software Consortium. All rights reserved.
10  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
11 
12  This software is distributed WITHOUT ANY WARRANTY; without even
13  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14  PURPOSE. See the above copyright notices for more information.
15 
16 =========================================================================*/
17 #ifndef __itkConfidenceConnectedSegmentationModule_h
18 #define __itkConfidenceConnectedSegmentationModule_h
19 
22 
23 namespace itk
24 {
25 
35 template <unsigned int NDimension>
37  public RegionGrowingSegmentationModule<NDimension>
38 {
39 public:
45 
47  itkNewMacro(Self);
48 
51 
53  itkStaticConstMacro(Dimension, unsigned int, NDimension);
54 
57  typedef typename Superclass::FeatureImageType FeatureImageType;
58  typedef typename Superclass::OutputImageType OutputImageType;
59  typedef typename Superclass::InputSpatialObjectType InputSpatialObjectType;
60 
63  itkSetMacro( SigmaMultiplier, double );
64  itkGetMacro( SigmaMultiplier, double );
66 
67 protected:
70  void PrintSelf(std::ostream& os, Indent indent) const;
71 
74  void GenerateData ();
75 
76 private:
77  ConfidenceConnectedSegmentationModule(const Self&); //purposely not implemented
78  void operator=(const Self&); //purposely not implemented
79 
81 
82 };
83 
84 } // end namespace itk
85 
86 #ifndef ITK_MANUAL_INSTANTIATION
87 # include "itkConfidenceConnectedSegmentationModule.hxx"
88 #endif
89 
90 #endif
Light weight base class for most itk classes.
This class applies the connected threshold region growing segmentation method.
Class applies a region growing segmentation method.
RegionGrowingSegmentationModule< NDimension > Superclass
Control indentation during Print() invocation.
Definition: itkIndent.h:49