ITK  5.1.0
Insight Toolkit
itkLabelMapToAttributeImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright NumFOCUS
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 itkLabelMapToAttributeImageFilter_h
19 #define itkLabelMapToAttributeImageFilter_h
20 
21 #include "itkImageToImageFilter.h"
23 
24 namespace itk
25 {
26 
44 template <typename TInputImage,
45  typename TOutputImage,
46  typename TAttributeAccessor =
47  typename Functor::AttributeLabelObjectAccessor<typename TInputImage::LabelObjectType>>
48 class ITK_TEMPLATE_EXPORT LabelMapToAttributeImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
49 {
50 public:
51  ITK_DISALLOW_COPY_AND_ASSIGN(LabelMapToAttributeImageFilter);
52 
58 
60  using InputImageType = TInputImage;
61  using OutputImageType = TOutputImage;
62  using InputImagePointer = typename InputImageType::Pointer;
63  using InputImageConstPointer = typename InputImageType::ConstPointer;
65  using InputImagePixelType = typename InputImageType::PixelType;
66  using OutputImagePointer = typename OutputImageType::Pointer;
67  using OutputImageConstPointer = typename OutputImageType::ConstPointer;
69  using OutputImagePixelType = typename OutputImageType::PixelType;
71 
72  using AttributeAccessorType = TAttributeAccessor;
73  using AttributeValueType = typename AttributeAccessorType::AttributeValueType;
74 
76  static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
77  static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
78 
80  itkNewMacro(Self);
81 
84 
90  itkSetMacro(BackgroundValue, OutputImagePixelType);
91  itkGetConstMacro(BackgroundValue, OutputImagePixelType);
93 
94 protected:
96  ~LabelMapToAttributeImageFilter() override = default;
97  void
98  PrintSelf(std::ostream & os, Indent indent) const override;
99 
103  void
104  GenerateInputRequestedRegion() override;
105 
107  void
108  EnlargeOutputRequestedRegion(DataObject * itkNotUsed(output)) override;
109 
112  void
113  GenerateData() override;
114 
115 private:
117 
118 }; // end of class
119 
120 } // end namespace itk
121 
122 #ifndef ITK_MANUAL_INSTANTIATION
123 # include "itkLabelMapToAttributeImageFilter.hxx"
124 #endif
125 
126 #endif
itk::LabelMapToAttributeImageFilter::m_BackgroundValue
OutputImagePixelType m_BackgroundValue
Definition: itkLabelMapToAttributeImageFilter.h:116
itk::ImageSource::OutputImagePointer
typename OutputImageType::Pointer OutputImagePointer
Definition: itkImageSource.h:91
itk::LabelMapToAttributeImageFilter::OutputImageConstPointer
typename OutputImageType::ConstPointer OutputImageConstPointer
Definition: itkLabelMapToAttributeImageFilter.h:67
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::ImageToImageFilter::InputImagePixelType
typename InputImageType::PixelType InputImagePixelType
Definition: itkImageToImageFilter.h:133
itk::GTest::TypedefsAndConstructors::Dimension2::IndexType
ImageBaseType::IndexType IndexType
Definition: itkGTestTypedefsAndConstructors.h:50
itk::ImageToImageFilter
Base class for filters that take an image as input and produce an image as output.
Definition: itkImageToImageFilter.h:108
itk::ImageSource
Base class for all process objects that output image data.
Definition: itkImageSource.h:67
itk::LabelMapToAttributeImageFilter::AttributeValueType
typename AttributeAccessorType::AttributeValueType AttributeValueType
Definition: itkLabelMapToAttributeImageFilter.h:73
itk::ImageToImageFilter::InputImagePointer
typename InputImageType::Pointer InputImagePointer
Definition: itkImageToImageFilter.h:130
itk::LabelMapToAttributeImageFilter::IndexType
typename OutputImageType::IndexType IndexType
Definition: itkLabelMapToAttributeImageFilter.h:70
itkAttributeLabelObject.h
itk::GTest::TypedefsAndConstructors::Dimension2::RegionType
ImageBaseType::RegionType RegionType
Definition: itkGTestTypedefsAndConstructors.h:54
itk::ImageToImageFilter::InputImageType
TInputImage InputImageType
Definition: itkImageToImageFilter.h:129
itkImageToImageFilter.h
itk::LabelMapToAttributeImageFilter
Convert a LabelMap to a labeled image.
Definition: itkLabelMapToAttributeImageFilter.h:48
itk::ImageSource::OutputImageRegionType
typename OutputImageType::RegionType OutputImageRegionType
Definition: itkImageSource.h:92
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkArray.h:26
itk::ProcessObject
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Definition: itkProcessObject.h:138
itk::ImageSource::OutputImagePixelType
typename OutputImageType::PixelType OutputImagePixelType
Definition: itkImageSource.h:93
itk::LabelMapToAttributeImageFilter::AttributeAccessorType
TAttributeAccessor AttributeAccessorType
Definition: itkLabelMapToAttributeImageFilter.h:72
itk::ImageToImageFilter::InputImageRegionType
typename InputImageType::RegionType InputImageRegionType
Definition: itkImageToImageFilter.h:132
itk::ImageToImageFilter::InputImageConstPointer
typename InputImageType::ConstPointer InputImageConstPointer
Definition: itkImageToImageFilter.h:131
itk::ImageSource::OutputImageType
TOutputImage OutputImageType
Definition: itkImageSource.h:90
itk::DataObject
Base class for all data objects in ITK.
Definition: itkDataObject.h:293