ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkLabelMapToLabelImageFilter.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 itkLabelMapToLabelImageFilter_h
19 #define itkLabelMapToLabelImageFilter_h
20 
21 #include "itkLabelMapFilter.h"
22 
23 namespace itk
24 {
45 template< typename TInputImage, typename TOutputImage >
46 class ITK_TEMPLATE_EXPORT LabelMapToLabelImageFilter:
47  public LabelMapFilter< TInputImage, TOutputImage >
48 {
49 public:
55 
57  typedef typename Superclass::InputImageType InputImageType;
58  typedef typename Superclass::InputImagePointer InputImagePointer;
59  typedef typename Superclass::InputImageConstPointer InputImageConstPointer;
60  typedef typename Superclass::InputImageRegionType InputImageRegionType;
61  typedef typename Superclass::InputImagePixelType InputImagePixelType;
62  typedef typename Superclass::LabelObjectType LabelObjectType;
63 
65  typedef typename Superclass::OutputImagePointer OutputImagePointer;
66  typedef typename Superclass::OutputImageConstPointer OutputImageConstPointer;
67  typedef typename Superclass::OutputImageRegionType OutputImageRegionType;
68  typedef typename Superclass::OutputImagePixelType OutputImagePixelType;
70 
72  itkStaticConstMacro(InputImageDimension, unsigned int, TInputImage::ImageDimension);
73  itkStaticConstMacro(OutputImageDimension, unsigned int, TOutputImage::ImageDimension);
75 
77  itkNewMacro(Self);
78 
81 
82 #ifdef ITK_USE_CONCEPT_CHECKING
83  itkConceptMacro( SameDimensionCheck,
85 #endif
86 
87 protected:
89  ~LabelMapToLabelImageFilter() ITK_OVERRIDE {}
90 
91  virtual void BeforeThreadedGenerateData() ITK_OVERRIDE;
92 
93  virtual void ThreadedProcessLabelObject(LabelObjectType *labelObject) ITK_OVERRIDE;
94 
95 private:
96  ITK_DISALLOW_COPY_AND_ASSIGN(LabelMapToLabelImageFilter);
97  OutputImageType *m_OutputImage;
98 }; // end of class
99 } // end namespace itk
100 
101 #ifndef ITK_MANUAL_INSTANTIATION
102 #include "itkLabelMapToLabelImageFilter.hxx"
103 #endif
104 
105 #endif
Superclass::OutputImagePixelType OutputImagePixelType
Base class for all process objects that output image data.
Superclass::LabelObjectType LabelObjectType
Superclass::OutputImagePointer OutputImagePointer
Superclass::OutputImageRegionType OutputImageRegionType
Superclass::InputImagePixelType InputImagePixelType
Superclass::OutputImageType OutputImageType
Base class for filters that take an image as input and overwrite that image as the output...
LabelMapFilter< TInputImage, TOutputImage > Superclass
Superclass::InputImageConstPointer InputImageConstPointer
Superclass::InputImageRegionType InputImageRegionType
Superclass::InputImagePointer InputImagePointer
TOutputImage OutputImageType
Superclass::OutputImageConstPointer OutputImageConstPointer
#define itkConceptMacro(name, concept)
Converts a LabelMap to a labeled image.