ITK  5.4.0
Insight Toolkit
itkSegmentationRegion.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright NumFOCUS
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * https://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef itkSegmentationRegion_h
19 #define itkSegmentationRegion_h
20 
21 #include "itkObject.h"
22 #include "itkObjectFactory.h"
23 #include "ITKKLMRegionGrowingExport.h"
24 
25 namespace itk
26 {
48 class ITKKLMRegionGrowing_EXPORT SegmentationRegion : public Object
49 {
50 public:
51  ITK_DISALLOW_COPY_AND_MOVE(SegmentationRegion);
52 
55  using Superclass = Object;
58 
60  itkNewMacro(Self);
61 
63  itkOverrideGetNameOfClassMacro(SegmentationRegion);
64 
66  using RegionLabelType = unsigned int;
67 
71  virtual void
73  {}
74 
77  itkSetMacro(RegionLabel, RegionLabelType);
78  itkGetConstReferenceMacro(RegionLabel, RegionLabelType);
82  itkSetMacro(RegionArea, double);
83  itkGetConstReferenceMacro(RegionArea, double);
86 protected:
88  ~SegmentationRegion() override;
89  void
90  PrintSelf(std::ostream & os, Indent indent) const override;
91 
92 private:
93  RegionLabelType m_RegionLabel{ 0 };
94  double m_RegionArea{ 0 };
95 };
96 } // end namespace itk
97 
98 #endif
itkObjectFactory.h
itk::SegmentationRegion::RegionLabelType
unsigned int RegionLabelType
Definition: itkSegmentationRegion.h:66
itk::SegmentationRegion
Base class for SegmentationRegion object.
Definition: itkSegmentationRegion.h:48
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::SegmentationRegion::ApplySegmentationRegion
virtual void ApplySegmentationRegion()
Definition: itkSegmentationRegion.h:72
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:55
itkObject.h
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::Object
Base class for most ITK classes.
Definition: itkObject.h:61