ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkSumProjectionImageFilter.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 itkSumProjectionImageFilter_h
19#define itkSumProjectionImageFilter_h
20
22#include "itkConceptChecking.h"
23
24namespace itk
25{
45
46namespace Functor
47{
48template <typename TInputPixel, typename TOutputPixel>
50{
51public:
53 ~SumAccumulator() = default;
54
55 inline void
57 {
58 m_Sum = TOutputPixel{};
59 }
60
61 inline void
62 operator()(const TInputPixel & input)
63 {
64 m_Sum = m_Sum + input;
65 }
66
67 inline TOutputPixel
69 {
70 return m_Sum;
71 }
72
73 TOutputPixel m_Sum;
74};
75} // namespace Functor
76
77template <typename TInputImage, typename TOutputImage>
79 : public ProjectionImageFilter<
80 TInputImage,
81 TOutputImage,
82 Functor::SumAccumulator<typename TInputImage::PixelType, typename TOutputImage::PixelType>>
83{
84public:
85 ITK_DISALLOW_COPY_AND_MOVE(SumProjectionImageFilter);
86
88 using Superclass =
89 ProjectionImageFilter<TInputImage,
90 TOutputImage,
92
93 using InputImageType = TInputImage;
94 using InputPixelType = typename InputImageType::PixelType;
95
96 using OutputImageType = TOutputImage;
97 using OutputPixelType = typename OutputImageType::PixelType;
98
101
103 itkOverrideGetNameOfClassMacro(SumProjectionImageFilter);
104
106 itkNewMacro(Self);
107
108 itkConceptMacro(InputPixelToOutputPixelTypeGreaterAdditiveOperatorCheck,
110 itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<InputPixelType>));
111
112protected:
114 ~SumProjectionImageFilter() override = default;
115}; // end SumProjectionImageFilter
116} // end namespace itk
117
118#endif
void operator()(const TInputPixel &input)
Implements transparent reference counting.
typename InputImageType::PixelType InputPixelType
typename OutputImageType::PixelType OutputPixelType
~SumProjectionImageFilter() override=default
ProjectionImageFilter< TInputImage, TOutputImage, Functor::SumAccumulator< typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86