ITK  4.4.0
Insight Segmentation and Registration Toolkit
itkBinaryShapeOpeningImageFilter.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 __itkBinaryShapeOpeningImageFilter_h
19 #define __itkBinaryShapeOpeningImageFilter_h
20 
21 #include "itkShapeLabelObject.h"
23 #include "itkShapeLabelMapFilter.h"
26 
27 namespace itk
28 {
46 template< class TInputImage >
48  public ImageToImageFilter< TInputImage, TInputImage >
49 {
50 public:
56 
58  typedef TInputImage InputImageType;
59  typedef TInputImage OutputImageType;
60  typedef typename InputImageType::Pointer InputImagePointer;
61  typedef typename InputImageType::ConstPointer InputImageConstPointer;
62  typedef typename InputImageType::RegionType InputImageRegionType;
63  typedef typename InputImageType::PixelType InputImagePixelType;
64  typedef typename OutputImageType::Pointer OutputImagePointer;
65  typedef typename OutputImageType::ConstPointer OutputImageConstPointer;
66  typedef typename OutputImageType::RegionType OutputImageRegionType;
67  typedef typename OutputImageType::PixelType OutputImagePixelType;
68 
70  itkStaticConstMacro(InputImageDimension, unsigned int, TInputImage::ImageDimension);
71  itkStaticConstMacro(OutputImageDimension, unsigned int, TInputImage::ImageDimension);
72  itkStaticConstMacro(ImageDimension, unsigned int, TInputImage::ImageDimension);
74 
76 
86 
88  itkNewMacro(Self);
89 
92 
99  itkSetMacro(FullyConnected, bool);
100  itkGetConstReferenceMacro(FullyConnected, bool);
101  itkBooleanMacro(FullyConnected);
103 
104 #ifdef ITK_USE_CONCEPT_CHECKING
105 
106  itkConceptMacro( InputEqualityComparableCheck,
108  itkConceptMacro( IntConvertibleToInputCheck,
110  itkConceptMacro( InputOStreamWritableCheck,
112 
114 #endif
115 
120  itkSetMacro(BackgroundValue, OutputImagePixelType);
121  itkGetConstMacro(BackgroundValue, OutputImagePixelType);
123 
128  itkSetMacro(ForegroundValue, OutputImagePixelType);
129  itkGetConstMacro(ForegroundValue, OutputImagePixelType);
131 
135  itkGetConstMacro(Lambda, double);
136  itkSetMacro(Lambda, double);
138 
145  itkGetConstMacro(ReverseOrdering, bool);
146  itkSetMacro(ReverseOrdering, bool);
147  itkBooleanMacro(ReverseOrdering);
149 
154  itkGetConstMacro(Attribute, AttributeType);
155  itkSetMacro(Attribute, AttributeType);
156  void SetAttribute(const std::string & s)
157  {
158  this->SetAttribute( LabelObjectType::GetAttributeFromName(s) );
159  }
161 
162 protected:
165  void PrintSelf(std::ostream & os, Indent indent) const;
166 
169  void GenerateInputRequestedRegion();
170 
172  void EnlargeOutputRequestedRegion( DataObject *itkNotUsed(output) );
173 
176  void GenerateData();
177 
178 private:
179  BinaryShapeOpeningImageFilter(const Self &); //purposely not implemented
180  void operator=(const Self &); //purposely not implemented
181 
185  double m_Lambda;
188 }; // end of class
189 } // end namespace itk
190 
191 #ifndef ITK_MANUAL_INSTANTIATION
192 #include "itkBinaryShapeOpeningImageFilter.hxx"
193 #endif
194 
195 #endif
196