ITK  5.4.0
Insight Toolkit
itkReconstructionByDilationImageFilter.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 itkReconstructionByDilationImageFilter_h
19#define itkReconstructionByDilationImageFilter_h
20
22
23#include "itkNumericTraits.h"
24#include <functional>
25
26namespace itk
27{
63template <typename TInputImage, typename TOutputImage>
65 : public ReconstructionImageFilter<TInputImage, TOutputImage, std::greater<typename TOutputImage::PixelType>>
66{
67public:
68 ITK_DISALLOW_COPY_AND_MOVE(ReconstructionByDilationImageFilter);
69
71 using Superclass =
73
76
78 using MarkerImageType = TInputImage;
82 using MarkerImagePixelType = typename MarkerImageType::PixelType;
83 using MaskImageType = TInputImage;
87 using MaskImagePixelType = typename MaskImageType::PixelType;
88 using OutputImageType = TOutputImage;
92 using OutputImagePixelType = typename OutputImageType::PixelType;
93
95 static constexpr unsigned int MarkerImageDimension = TInputImage::ImageDimension;
96 static constexpr unsigned int MaskImageDimension = TInputImage::ImageDimension;
97 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
98
100 itkNewMacro(Self);
101
103 itkOverrideGetNameOfClassMacro(ReconstructionByDilationImageFilter);
104
105protected:
107 {
109 }
110
112};
113// end ReconstructionByDilationImageFilter
114} // namespace itk
115
116#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 NonpositiveMin()
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
grayscale reconstruction by dilation of an image
typename MarkerImageType::ConstPointer MarkerImageConstPointer
~ReconstructionByDilationImageFilter() override=default
typename OutputImageType::ConstPointer OutputImageConstPointer
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....