ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMedianImageFilter.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 itkMedianImageFilter_h
19#define itkMedianImageFilter_h
20
21#include "itkBoxImageFilter.h"
22#include "itkImage.h"
23
24namespace itk
25{
52template <typename TInputImage, typename TOutputImage>
53class ITK_TEMPLATE_EXPORT MedianImageFilter : public BoxImageFilter<TInputImage, TOutputImage>
54{
55public:
56 ITK_DISALLOW_COPY_AND_MOVE(MedianImageFilter);
58
60 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
61 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
62
64 using InputImageType = TInputImage;
65 using OutputImageType = TOutputImage;
66
72
74 itkNewMacro(Self);
75
77 itkOverrideGetNameOfClassMacro(MedianImageFilter);
78
80 using InputPixelType = typename InputImageType::PixelType;
81 using OutputPixelType = typename OutputImageType::PixelType;
82
83 using InputImageRegionType = typename InputImageType::RegionType;
84 using OutputImageRegionType = typename OutputImageType::RegionType;
85
86 using InputSizeType = typename InputImageType::SizeType;
87
90 itkConceptMacro(InputLessThanComparableCheck, (Concept::LessThanComparable<InputPixelType>));
91
92protected:
94 ~MedianImageFilter() override = default;
95
106 void
107 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
108};
109} // end namespace itk
111
112#ifndef ITK_MANUAL_INSTANTIATION
113# include "itkMedianImageFilter.hxx"
114#endif
115
116#endif
Base class for filters that take an image as input and produce an image as output.
SmartPointer< const Self > ConstPointer
static constexpr unsigned int OutputImageDimension
typename OutputImageType::PixelType OutputPixelType
static constexpr unsigned int InputImageDimension
SmartPointer< Self > Pointer
typename InputImageType::PixelType InputPixelType
~MedianImageFilter() override=default
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
typename InputImageType::RegionType InputImageRegionType
ImageToImageFilter< InputImageType, OutputImageType > Superclass
typename InputImageType::SizeType InputSizeType
typename OutputImageType::RegionType OutputImageRegionType
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....