ITK  5.0.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>
36 class ITK_TEMPLATE_EXPORT ConfidenceConnectedSegmentationModule :
37  public RegionGrowingSegmentationModule<NDimension>
38 {
39 public:
40  ITK_DISALLOW_COPY_AND_ASSIGN(ConfidenceConnectedSegmentationModule);
41 
47 
49  itkNewMacro(Self);
50 
53 
55  static constexpr unsigned int Dimension = NDimension;
56 
59  using FeatureImageType = typename Superclass::FeatureImageType;
60  using OutputImageType = typename Superclass::OutputImageType;
61  using InputSpatialObjectType = typename Superclass::InputSpatialObjectType;
62 
65  itkSetMacro( SigmaMultiplier, double );
66  itkGetMacro( SigmaMultiplier, double );
68 
69 protected:
72  void PrintSelf(std::ostream& os, Indent indent) const override;
73 
76  void GenerateData () override;
77 
78 private:
80 
81 };
82 
83 } // end namespace itk
84 
85 #ifndef ITK_MANUAL_INSTANTIATION
86 # include "itkConfidenceConnectedSegmentationModule.hxx"
87 #endif
88 
89 #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.
typename Superclass::InputSpatialObjectType InputSpatialObjectType
Control indentation during Print() invocation.
Definition: itkIndent.h:49