ITK  5.4.0
Insight Toolkit
itkReconstructionByErosionImageFilter.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 * https://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 itkReconstructionByErosionImageFilter_h
19#define itkReconstructionByErosionImageFilter_h
20
22
23#include "itkNumericTraits.h"
24
25namespace itk
26{
62template <typename TInputImage, typename TOutputImage>
64 : public ReconstructionImageFilter<TInputImage, TOutputImage, std::less<typename TOutputImage::PixelType>>
65{
66public:
67 ITK_DISALLOW_COPY_AND_MOVE(ReconstructionByErosionImageFilter);
68
71
74
76 using MarkerImageType = TInputImage;
80 using MarkerImagePixelType = typename MarkerImageType::PixelType;
81 using MaskImageType = TInputImage;
85 using MaskImagePixelType = typename MaskImageType::PixelType;
86 using OutputImageType = TOutputImage;
90 using OutputImagePixelType = typename OutputImageType::PixelType;
91
93 static constexpr unsigned int MarkerImageDimension = TInputImage::ImageDimension;
94 static constexpr unsigned int MaskImageDimension = TInputImage::ImageDimension;
95 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
96
98 itkNewMacro(Self);
99
101 itkOverrideGetNameOfClassMacro(ReconstructionByErosionImageFilter);
102
103protected:
105
107}; // end
108 //
109 //
110 //
111 //
112 // ReconstructionByErosionImageFilter
113} // namespace itk
114
115#endif
Base class for all process objects that output image data.
typename OutputImageType::PixelType OutputImagePixelType
typename OutputImageType::RegionType OutputImageRegionType
TOutputImage OutputImageType
typename OutputImageType::Pointer OutputImagePointer
static constexpr T max(const T &)
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
grayscale reconstruction by erosion of an image
typename MaskImageType::ConstPointer MaskImageConstPointer
~ReconstructionByErosionImageFilter() override=default
typename OutputImageType::ConstPointer OutputImageConstPointer
typename MarkerImageType::RegionType MarkerImageRegionType
typename MarkerImageType::ConstPointer MarkerImageConstPointer
Performs a grayscale geodesic reconstruction – for performance comparison with GrayscaleGeodesicDilat...
SmartPointer< const Self > ConstPointer
SmartPointer< Self > Pointer
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....