ITK  4.4.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< class TInputImage, class TOutputImage =
61  LabelMap< ShapeLabelObject< SizeValueType, TInputImage::ImageDimension > > >
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 
115  itkConceptMacro( InputEqualityComparableCheck,
117  itkConceptMacro( IntConvertibleToInputCheck,
119  itkConceptMacro( InputOStreamWritableCheck,
121 
123 #endif
124 
129  itkSetMacro(OutputBackgroundValue, OutputImagePixelType);
130  itkGetConstMacro(OutputBackgroundValue, OutputImagePixelType);
132 
137  itkSetMacro(InputForegroundValue, InputImagePixelType);
138  itkGetConstMacro(InputForegroundValue, InputImagePixelType);
140 
145  itkSetMacro(ComputeFeretDiameter, bool);
146  itkGetConstReferenceMacro(ComputeFeretDiameter, bool);
147  itkBooleanMacro(ComputeFeretDiameter);
149 
154  itkSetMacro(ComputePerimeter, bool);
155  itkGetConstReferenceMacro(ComputePerimeter, bool);
156  itkBooleanMacro(ComputePerimeter);
158 
159 protected:
162  void PrintSelf(std::ostream & os, Indent indent) const;
163 
166  void GenerateInputRequestedRegion();
167 
169  void EnlargeOutputRequestedRegion( DataObject *itkNotUsed(output) );
170 
173  void GenerateData();
174 
175 private:
176  BinaryImageToShapeLabelMapFilter(const Self &); //purposely not implemented
177  void operator=(const Self &); //purposely not implemented
178 
184 }; // end of class
185 } // end namespace itk
186 
187 #ifndef ITK_MANUAL_INSTANTIATION
188 #include "itkBinaryImageToShapeLabelMapFilter.hxx"
189 #endif
190 
191 #endif
192