ITK  4.2.0
Insight Segmentation and Registration Toolkit
itkAttributeOpeningLabelMapFilter.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 __itkAttributeOpeningLabelMapFilter_h
19 #define __itkAttributeOpeningLabelMapFilter_h
20 
23 
24 namespace itk {
42 template<class TImage, class TAttributeAccessor=
43  typename Functor::AttributeLabelObjectAccessor< typename TImage::LabelObjectType > >
45  public InPlaceLabelMapFilter<TImage>
46 {
47 public:
53 
55  typedef TImage ImageType;
56  typedef typename ImageType::Pointer ImagePointer;
57  typedef typename ImageType::ConstPointer ImageConstPointer;
58  typedef typename ImageType::PixelType PixelType;
59  typedef typename ImageType::IndexType IndexType;
60 
61  typedef typename Superclass::LabelObjectType LabelObjectType;
62 
63  typedef TAttributeAccessor AttributeAccessorType;
64  typedef typename AttributeAccessorType::AttributeValueType AttributeValueType;
65 
67  itkStaticConstMacro(ImageDimension, unsigned int,
68  TImage::ImageDimension);
69 
71  itkNewMacro(Self);
72 
74  itkTypeMacro(AttributeOpeningLabelMapFilter,
76 
77 #ifdef ITK_USE_CONCEPT_CHECKING
78 
79 /* itkConceptMacro(InputEqualityComparableCheck,
80  (Concept::EqualityComparable<InputImagePixelType>));
81  itkConceptMacro(IntConvertibleToInputCheck,
82  (Concept::Convertible<int, InputImagePixelType>));
83  itkConceptMacro(InputOStreamWritableCheck,
84  (Concept::OStreamWritable<InputImagePixelType>));*/
85 
87 #endif
88 
92  itkGetConstMacro(Lambda, AttributeValueType);
93  itkSetMacro(Lambda, AttributeValueType);
95 
102  itkGetConstMacro( ReverseOrdering, bool );
103  itkSetMacro( ReverseOrdering, bool );
104  itkBooleanMacro( ReverseOrdering );
106 
107 protected:
110 
111  void GenerateData();
112 
113  void PrintSelf(std::ostream& os, Indent indent) const;
114 
115 private:
116  AttributeOpeningLabelMapFilter(const Self&); //purposely not implemented
117  void operator=(const Self&); //purposely not implemented
118 
121 
122 }; // end of class
123 
124 } // end namespace itk
125 
126 #ifndef ITK_MANUAL_INSTANTIATION
127 #include "itkAttributeOpeningLabelMapFilter.hxx"
128 #endif
129 
130 #endif
131