ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMedianProjectionImageFilter.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 itkMedianProjectionImageFilter_h
19#define itkMedianProjectionImageFilter_h
20
22#include "itkConceptChecking.h"
23
24#include <vector>
25#include <algorithm>
26
27namespace itk
28{
47
48namespace Functor
49{
50template <typename TInputPixel>
52{
53public:
54 MedianAccumulator(SizeValueType size) { m_Values.reserve(size); }
55
56 ~MedianAccumulator() = default;
57
58 inline void
60 {
61 m_Values.clear();
62 }
63
64 inline void
65 operator()(const TInputPixel & input)
66 {
67 m_Values.push_back(input);
68 }
69
70 inline TInputPixel
72 {
73 auto medianIterator = m_Values.begin() + m_Values.size() / 2;
74 std::nth_element(m_Values.begin(), medianIterator, m_Values.end());
75 return *medianIterator;
76 }
77
78 std::vector<TInputPixel> m_Values;
79};
80} // namespace Functor
81
82template <typename TInputImage, typename TOutputImage>
84 : public ProjectionImageFilter<TInputImage, TOutputImage, Functor::MedianAccumulator<typename TInputImage::PixelType>>
85{
86public:
87 ITK_DISALLOW_COPY_AND_MOVE(MedianProjectionImageFilter);
88
90 using Superclass =
92
95
97 itkOverrideGetNameOfClassMacro(MedianProjectionImageFilter);
98
100 itkNewMacro(Self);
101
102protected:
104 ~MedianProjectionImageFilter() override = default;
105}; // end MedianProjectionImageFilter
106} // end namespace itk
107
108#endif
void operator()(const TInputPixel &input)
ProjectionImageFilter< TInputImage, TOutputImage, Functor::MedianAccumulator< typename TInputImage::PixelType > > Superclass
~MedianProjectionImageFilter() override=default
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86