ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkBinaryImageToShapeLabelMapFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 itkBinaryImageToShapeLabelMapFilter_h
19 #define itkBinaryImageToShapeLabelMapFilter_h
20 
21 #include "itkShapeLabelObject.h"
23 #include "itkShapeLabelMapFilter.h"
24 
25 namespace itk
26 {
60 template< typename TInputImage, typename TOutputImage =
61  LabelMap< ShapeLabelObject< SizeValueType, TInputImage::ImageDimension > > >
62 class ITK_TEMPLATE_EXPORT BinaryImageToShapeLabelMapFilter:
63  public ImageToImageFilter< TInputImage, TOutputImage >
64 {
65 public:
71 
73  typedef TInputImage InputImageType;
74  typedef typename InputImageType::Pointer InputImagePointer;
75  typedef typename InputImageType::ConstPointer InputImageConstPointer;
76  typedef typename InputImageType::RegionType InputImageRegionType;
77  typedef typename InputImageType::PixelType InputImagePixelType;
78 
79  typedef TOutputImage OutputImageType;
80  typedef typename OutputImageType::Pointer OutputImagePointer;
81  typedef typename OutputImageType::ConstPointer OutputImageConstPointer;
82  typedef typename OutputImageType::RegionType OutputImageRegionType;
83  typedef typename OutputImageType::PixelType OutputImagePixelType;
84  typedef typename OutputImageType::LabelObjectType LabelObjectType;
85 
87  itkStaticConstMacro(InputImageDimension, unsigned int, TInputImage::ImageDimension);
88  itkStaticConstMacro(OutputImageDimension, unsigned int, TInputImage::ImageDimension);
89  itkStaticConstMacro(ImageDimension, unsigned int, TInputImage::ImageDimension);
91 
96 
98  itkNewMacro(Self);
99 
102 
108  itkSetMacro(FullyConnected, bool);
109  itkGetConstReferenceMacro(FullyConnected, bool);
110  itkBooleanMacro(FullyConnected);
112 
113 #ifdef ITK_USE_CONCEPT_CHECKING
114  // Begin concept checking
115  itkConceptMacro( InputEqualityComparableCheck,
117  itkConceptMacro( IntConvertibleToInputCheck,
119  itkConceptMacro( InputOStreamWritableCheck,
121  // End concept checking
122 #endif
123 
128  itkSetMacro(OutputBackgroundValue, OutputImagePixelType);
129  itkGetConstMacro(OutputBackgroundValue, OutputImagePixelType);
131 
136  itkSetMacro(InputForegroundValue, InputImagePixelType);
137  itkGetConstMacro(InputForegroundValue, InputImagePixelType);
139 
144  itkSetMacro(ComputeFeretDiameter, bool);
145  itkGetConstReferenceMacro(ComputeFeretDiameter, bool);
146  itkBooleanMacro(ComputeFeretDiameter);
148 
153  itkSetMacro(ComputePerimeter, bool);
154  itkGetConstReferenceMacro(ComputePerimeter, bool);
155  itkBooleanMacro(ComputePerimeter);
157 
163  itkSetMacro(ComputeOrientedBoundingBox, bool);
164  itkGetConstReferenceMacro(ComputeOrientedBoundingBox, bool);
165  itkBooleanMacro(ComputeOrientedBoundingBox);
167 
168 protected:
171  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
172 
175  void GenerateInputRequestedRegion() ITK_OVERRIDE;
176 
178  void EnlargeOutputRequestedRegion( DataObject *itkNotUsed(output) ) ITK_OVERRIDE;
179 
182  void GenerateData() ITK_OVERRIDE;
183 
184 private:
185  ITK_DISALLOW_COPY_AND_ASSIGN(BinaryImageToShapeLabelMapFilter);
186 
187  bool m_FullyConnected;
188  OutputImagePixelType m_OutputBackgroundValue;
189  InputImagePixelType m_InputForegroundValue;
190  bool m_ComputeFeretDiameter;
191  bool m_ComputePerimeter;
192  bool m_ComputeOrientedBoundingBox;
193 }; // end of class
194 } // end namespace itk
195 
196 #ifndef ITK_MANUAL_INSTANTIATION
197 #include "itkBinaryImageToShapeLabelMapFilter.hxx"
198 #endif
199 
200 #endif
Image< typename OutputImageType::PixelType, itkGetStaticConstMacro(OutputImageDimension) > ShapeLabelFilterOutput
Base class for all process objects that output image data.
BinaryImageToLabelMapFilter< InputImageType, OutputImageType > LabelizerType
OutputImageType::PixelType OutputImagePixelType
ShapeLabelMapFilter< TOutputImage, ShapeLabelFilterOutput > LabelObjectValuatorType
ImageToImageFilter< TInputImage, TOutputImage > Superclass
InputImageType::PixelType InputImagePixelType
Label the connected components in a binary image and produce a collection of label objects...
Base class for filters that take an image as input and produce an image as output.
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Converts a binary image to a label map and valuate the shape attributes.
#define itkConceptMacro(name, concept)
The valuator class for the ShapeLabelObject.
Base class for all data objects in ITK.
Templated n-dimensional image class.
Definition: itkImage.h:75