ITK  5.4.0
Insight Toolkit
itkMovingHistogramErodeImageFilter.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 itkMovingHistogramErodeImageFilter_h
19#define itkMovingHistogramErodeImageFilter_h
20
22
23namespace itk
24{
41template <typename TInputImage, typename TOutputImage, typename TKernel>
44 TInputImage,
45 TOutputImage,
46 TKernel,
47 typename Function::MorphologyHistogram<typename TInputImage::PixelType,
48 typename std::less<typename TInputImage::PixelType>>>
49{
50public:
51 ITK_DISALLOW_COPY_AND_MOVE(MovingHistogramErodeImageFilter);
52
56 TInputImage,
57 TOutputImage,
58 TKernel,
59 typename Function::MorphologyHistogram<typename TInputImage::PixelType,
60 typename std::less<typename TInputImage::PixelType>>>;
63
65 itkNewMacro(Self);
66
68 itkOverrideGetNameOfClassMacro(MovingHistogramErodeImageFilter);
69
71 using InputImageType = TInputImage;
72 using OutputImageType = TOutputImage;
76 using PixelType = typename TInputImage::PixelType;
77 using OffsetType = typename TInputImage::OffsetType;
79 using OutputPixelType = typename TOutputImage::PixelType;
80
82 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
83
84protected:
86
88}; // end of class
89} // end namespace itk
90
91#endif
typename TInputImage::RegionType RegionType
typename TInputImage::SizeType SizeType
typename TInputImage::IndexType IndexType
typename TOutputImage::PixelType OutputPixelType
typename TInputImage::OffsetType OffsetType
Base class for all process objects that output image data.
typename OutputImageType::RegionType OutputImageRegionType
TOutputImage OutputImageType
~MovingHistogramErodeImageFilter() override=default
Base class for MovingHistogramDilateImageFilter and MovingHistogramErodeImageFilter.
static constexpr T max(const T &)
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....