Loading [MathJax]/extensions/tex2jax.js
ITK 6.0.0
Insight Toolkit
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
itkMeanProjectionImageFilter.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 itkMeanProjectionImageFilter_h
19#define itkMeanProjectionImageFilter_h
20
22#include "itkConceptChecking.h"
23
24namespace itk
25{
44
45namespace Functor
46{
47template <typename TInputPixel, typename TAccumulate>
49{
50public:
52
54
56
57 inline void
59 {
60 m_Sum = TAccumulate{};
61 }
62
63 inline void
64 operator()(const TInputPixel & input)
65 {
66 m_Sum = m_Sum + input;
67 }
68
69 inline RealType
71 {
72 return ((RealType)m_Sum) / m_Size;
73 }
74
75 TAccumulate m_Sum;
77};
78} // namespace Functor
79
80template <typename TInputImage,
81 typename TOutputImage,
84 : public ProjectionImageFilter<TInputImage,
85 TOutputImage,
86 Functor::MeanAccumulator<typename TInputImage::PixelType, TAccumulate>>
87{
88public:
89 ITK_DISALLOW_COPY_AND_MOVE(MeanProjectionImageFilter);
90
92 using Superclass = ProjectionImageFilter<TInputImage,
93 TOutputImage,
95
98
99 using InputImageType = TInputImage;
100 using InputPixelType = typename InputImageType::PixelType;
101
102 using OutputImageType = TOutputImage;
103 using OutputPixelType = typename OutputImageType::PixelType;
104
106 itkOverrideGetNameOfClassMacro(MeanProjectionImageFilter);
107
109 itkNewMacro(Self);
110
111 itkConceptMacro(InputPixelToOutputPixelTypeGreaterAdditiveOperatorCheck,
113
114 itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<InputPixelType>));
115
116protected:
118 ~MeanProjectionImageFilter() override = default;
119}; // end MeanProjectionImageFilter
120} // end namespace itk
121
122#endif
void operator()(const TInputPixel &input)
typename NumericTraits< TInputPixel >::RealType RealType
~MeanProjectionImageFilter() override=default
ProjectionImageFilter< TInputImage, TOutputImage, Functor::MeanAccumulator< typename TInputImage::PixelType, TAccumulate > > Superclass
typename OutputImageType::PixelType OutputPixelType
typename InputImageType::PixelType InputPixelType
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86