ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkStandardDeviationProjectionImageFilter.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 itkStandardDeviationProjectionImageFilter_h
19#define itkStandardDeviationProjectionImageFilter_h
20
22#include "itkConceptChecking.h"
23
24namespace itk
25{
45
46namespace Functor
47{
48template <typename TInputPixel, typename TAccumulate>
50{
51public:
53
55 {
56 m_Size = size;
57 m_Values.reserve(size);
58 }
59
61
62 inline void
64 {
65 m_Sum = TAccumulate{};
66 m_Values.clear();
67 }
68
69 inline void
70 operator()(const TInputPixel & input)
71 {
72 m_Sum = m_Sum + input;
73 m_Values.push_back(input);
74 }
75
76 inline RealType
78 {
79 // to avoid division by zero
80 if (m_Size <= 1)
81 {
82 return RealType{};
83 }
84
86 typename std::vector<TInputPixel>::iterator it;
87 RealType squaredSum{};
88 for (it = m_Values.begin(); it != m_Values.end(); ++it)
89 {
90 squaredSum += itk::Math::sqr(*it - mean);
91 }
92 return std::sqrt(squaredSum / (m_Size - 1));
93 }
94
95 TAccumulate m_Sum;
97 std::vector<TInputPixel> m_Values;
98};
99} // namespace Functor
100
101template <typename TInputImage,
102 typename TOutputImage,
105 : public ProjectionImageFilter<TInputImage,
106 TOutputImage,
107 Functor::StandardDeviationAccumulator<typename TInputImage::PixelType, TAccumulate>>
108{
109public:
110 ITK_DISALLOW_COPY_AND_MOVE(StandardDeviationProjectionImageFilter);
111
113
115 ProjectionImageFilter<TInputImage,
116 TOutputImage,
118
119 using InputImageType = TInputImage;
120 using InputPixelType = typename InputImageType::PixelType;
121
124
126 itkOverrideGetNameOfClassMacro(StandardDeviationProjectionImageFilter);
127
129 itkNewMacro(Self);
130
131 itkConceptMacro(InputPixelToOutputPixelTypeGreaterAdditiveOperatorCheck,
133 itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<InputPixelType>));
134
135 itkConceptMacro(AccumulateHasNumericTraitsCheck, (Concept::HasNumericTraits<TAccumulate>));
136
137protected:
140}; // end StandardDeviationProjectionImageFilter
141} // end namespace itk
142
143#endif
typename NumericTraits< TInputPixel >::RealType RealType
Implements transparent reference counting.
~StandardDeviationProjectionImageFilter() override=default
ProjectionImageFilter< TInputImage, TOutputImage, Functor::StandardDeviationAccumulator< typename TInputImage::PixelType, TAccumulate > > Superclass
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86