ITK  5.1.0
Insight Toolkit
itkLabelMapToLabelImageFilter.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 itkLabelMapToLabelImageFilter_h
19 #define itkLabelMapToLabelImageFilter_h
20 
21 #include "itkLabelMapFilter.h"
22 
23 namespace itk
24 {
46 template <typename TInputImage, typename TOutputImage>
47 class ITK_TEMPLATE_EXPORT LabelMapToLabelImageFilter : public LabelMapFilter<TInputImage, TOutputImage>
48 {
49 public:
50  ITK_DISALLOW_COPY_AND_ASSIGN(LabelMapToLabelImageFilter);
51 
57 
59  using InputImageType = typename Superclass::InputImageType;
60  using InputImagePointer = typename Superclass::InputImagePointer;
61  using InputImageConstPointer = typename Superclass::InputImageConstPointer;
62  using InputImageRegionType = typename Superclass::InputImageRegionType;
63  using InputImagePixelType = typename Superclass::InputImagePixelType;
64  using LabelObjectType = typename Superclass::LabelObjectType;
65 
66  using OutputImageType = typename Superclass::OutputImageType;
67  using OutputImagePointer = typename Superclass::OutputImagePointer;
68  using OutputImageConstPointer = typename Superclass::OutputImageConstPointer;
69  using OutputImageRegionType = typename Superclass::OutputImageRegionType;
70  using OutputImagePixelType = typename Superclass::OutputImagePixelType;
72 
74  static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
75  static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
76 
78  itkNewMacro(Self);
79 
82 
83 #ifdef ITK_USE_CONCEPT_CHECKING
85 #endif
86 
87 protected:
89  ~LabelMapToLabelImageFilter() override = default;
90 
91  void
92  BeforeThreadedGenerateData() override;
93 
94  void
95  ThreadedProcessLabelObject(LabelObjectType * labelObject) override;
96 
97 private:
99 }; // end of class
100 } // end namespace itk
101 
102 #ifndef ITK_MANUAL_INSTANTIATION
103 # include "itkLabelMapToLabelImageFilter.hxx"
104 #endif
105 
106 #endif
itk::LabelMapFilter::OutputImageConstPointer
typename OutputImageType::ConstPointer OutputImageConstPointer
Definition: itkLabelMapFilter.h:85
itk::ImageSource::OutputImagePointer
typename OutputImageType::Pointer OutputImagePointer
Definition: itkImageSource.h:91
itk::SmartPointer< Self >
itk::LabelMapFilter::LabelObjectType
typename InputImageType::LabelObjectType LabelObjectType
Definition: itkLabelMapFilter.h:81
itkLabelMapFilter.h
itk::Concept::SameDimension
Definition: itkConceptChecking.h:692
itk::ImageToImageFilter::InputImagePixelType
typename InputImageType::PixelType InputImagePixelType
Definition: itkImageToImageFilter.h:133
itk::GTest::TypedefsAndConstructors::Dimension2::IndexType
ImageBaseType::IndexType IndexType
Definition: itkGTestTypedefsAndConstructors.h:50
itk::ImageSource
Base class for all process objects that output image data.
Definition: itkImageSource.h:67
itk::ImageToImageFilter::InputImagePointer
typename InputImageType::Pointer InputImagePointer
Definition: itkImageToImageFilter.h:130
itk::LabelMapFilter
Base class for filters that take an image as input and overwrite that image as the output.
Definition: itkLabelMapFilter.h:58
itk::LabelMapToLabelImageFilter::OutputImageType
typename Superclass::OutputImageType OutputImageType
Definition: itkLabelMapToLabelImageFilter.h:66
itk::ImageToImageFilter::InputImageType
TInputImage InputImageType
Definition: itkImageToImageFilter.h:129
itk::ImageSource::OutputImageRegionType
typename OutputImageType::RegionType OutputImageRegionType
Definition: itkImageSource.h:92
itk::LabelMapToLabelImageFilter::m_OutputImage
OutputImageType * m_OutputImage
Definition: itkLabelMapToLabelImageFilter.h:98
itkConceptMacro
#define itkConceptMacro(name, concept)
Definition: itkConceptChecking.h:64
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkArray.h:26
itk::LabelMapToLabelImageFilter::IndexType
typename OutputImageType::IndexType IndexType
Definition: itkLabelMapToLabelImageFilter.h:71
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::LabelMapToLabelImageFilter
Converts a LabelMap to a labeled image.
Definition: itkLabelMapToLabelImageFilter.h:47
itk::ImageToImageFilter::InputImageRegionType
typename InputImageType::RegionType InputImageRegionType
Definition: itkImageToImageFilter.h:132
itk::ImageToImageFilter::InputImageConstPointer
typename InputImageType::ConstPointer InputImageConstPointer
Definition: itkImageToImageFilter.h:131