ITK  4.4.0
Insight Segmentation and Registration Toolkit
itkReconstructionByDilationImageFilter.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 __itkReconstructionByDilationImageFilter_h
19 #define __itkReconstructionByDilationImageFilter_h
20 
22 
23 #include "itkNumericTraits.h"
24 #include <functional>
25 
26 namespace itk
27 {
62 template< class TInputImage, class TOutputImage >
64  public ReconstructionImageFilter< TInputImage, TOutputImage, std::greater< typename TOutputImage::PixelType > >
65 {
66 public:
69  TInputImage, TOutputImage, std::greater< typename TOutputImage::PixelType > >
71 
74 
76  typedef TInputImage MarkerImageType;
77  typedef typename MarkerImageType::Pointer MarkerImagePointer;
78  typedef typename MarkerImageType::ConstPointer MarkerImageConstPointer;
79  typedef typename MarkerImageType::RegionType MarkerImageRegionType;
80  typedef typename MarkerImageType::PixelType MarkerImagePixelType;
81  typedef TInputImage MaskImageType;
82  typedef typename MaskImageType::Pointer MaskImagePointer;
83  typedef typename MaskImageType::ConstPointer MaskImageConstPointer;
84  typedef typename MaskImageType::RegionType MaskImageRegionType;
85  typedef typename MaskImageType::PixelType MaskImagePixelType;
86  typedef TOutputImage OutputImageType;
87  typedef typename OutputImageType::Pointer OutputImagePointer;
88  typedef typename OutputImageType::ConstPointer OutputImageConstPointer;
89  typedef typename OutputImageType::RegionType OutputImageRegionType;
90  typedef typename OutputImageType::PixelType OutputImagePixelType;
91 
93  itkStaticConstMacro(MarkerImageDimension, unsigned int,
94  TInputImage::ImageDimension);
95  itkStaticConstMacro(MaskImageDimension, unsigned int,
96  TInputImage::ImageDimension);
97  itkStaticConstMacro(OutputImageDimension, unsigned int,
98  TOutputImage::ImageDimension);
100 
102  itkNewMacro(Self);
103 
107 
108 protected:
110  {
112  }
113 
115 
116 private:
117  //purposely not implemented
119  void operator=(const Self &);
120 };
121 // end ReconstructionByDilationImageFilter
122 }
123 
124 #endif
125