ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkAttributePositionLabelMapFilter.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 itkAttributePositionLabelMapFilter_h
19 #define itkAttributePositionLabelMapFilter_h
20 
23 
24 namespace itk {
42 template<typename TImage, typename TAttributeAccessor=
43  typename Functor::AttributeLabelObjectAccessor< typename TImage::LabelObjectType >, bool VPhysicalPosition=true >
44 class ITK_TEMPLATE_EXPORT AttributePositionLabelMapFilter :
45  public InPlaceLabelMapFilter<TImage>
46 {
47 public:
48  ITK_DISALLOW_COPY_AND_ASSIGN(AttributePositionLabelMapFilter);
49 
55 
57  using ImageType = TImage;
58  using ImagePointer = typename ImageType::Pointer;
59  using ImageConstPointer = typename ImageType::ConstPointer;
60  using PixelType = typename ImageType::PixelType;
61  using IndexType = typename ImageType::IndexType;
62  using LabelObjectType = typename ImageType::LabelObjectType;
63 
64  using AttributeAccessorType = TAttributeAccessor;
65  using AttributeValueType = typename AttributeAccessorType::AttributeValueType;
66 
68  static constexpr unsigned int ImageDimension = TImage::ImageDimension;
69 
71  itkNewMacro(Self);
72 
76 
77 #ifdef ITK_USE_CONCEPT_CHECKING
78  // Begin concept checking
79 /* itkConceptMacro(InputEqualityComparableCheck,
80  (Concept::EqualityComparable<InputImagePixelType>));
81  itkConceptMacro(IntConvertibleToInputCheck,
82  (Concept::Convertible<int, InputImagePixelType>));
83  itkConceptMacro(InputOStreamWritableCheck,
84  (Concept::OStreamWritable<InputImagePixelType>));*/
85  // End concept checking
86 #endif
87 
88 protected:
90  ~AttributePositionLabelMapFilter() override = default;
91 
92  void ThreadedProcessLabelObject( LabelObjectType * labelObject ) override;
93 
94  void PrintSelf(std::ostream& os, Indent indent) const override;
95 }; // end of class
96 
97 } // end namespace itk
98 
99 #ifndef ITK_MANUAL_INSTANTIATION
100 #include "itkAttributePositionLabelMapFilter.hxx"
101 #endif
102 
103 #endif
typename AttributeAccessorType::AttributeValueType AttributeValueType
Light weight base class for most itk classes.
typename ImageType::LabelObjectType LabelObjectType
Base class for filters that takes an image as input and overwrites that image as the output...
Mark a single pixel in the label object which correspond to a position given by an attribute...
Control indentation during Print() invocation.
Definition: itkIndent.h:49