ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMinimumProjectionImageFilter.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 itkMinimumProjectionImageFilter_h
19#define itkMinimumProjectionImageFilter_h
20
22#include "itkConceptChecking.h"
23
24namespace itk
25{
43
44namespace Functor
45{
46template <typename TInputPixel>
48{
49public:
52
53 inline void
55 {
56 if constexpr (std::is_same<TInputPixel, typename NumericTraits<TInputPixel>::ValueType>::value)
57 {
59 }
60 else
61 {
62 m_Minimum = TInputPixel();
64 }
65 }
66
67 inline void
68 operator()(const TInputPixel & input)
69 {
70
71 if constexpr (std::is_same<TInputPixel, typename NumericTraits<TInputPixel>::ValueType>::value)
72 {
73 m_Minimum = std::min(m_Minimum, input);
74 }
75 else
76 {
78 {
79 m_Minimum = input;
80 }
81 else
82 {
83 for (unsigned int i = 0; i < itk::NumericTraits<TInputPixel>::GetLength(m_Minimum); ++i)
84 {
85 m_Minimum[i] = std::min(m_Minimum[i], input[i]);
86 }
87 }
88 }
89 }
90
91 inline TInputPixel
93 {
94 return m_Minimum;
95 }
96
97 TInputPixel m_Minimum;
98};
99} // namespace Functor
100
101template <typename TInputImage, typename TOutputImage>
103 : public ProjectionImageFilter<TInputImage,
104 TOutputImage,
105 Functor::MinimumAccumulator<typename TInputImage::PixelType>>
106{
107public:
108 ITK_DISALLOW_COPY_AND_MOVE(MinimumProjectionImageFilter);
109
113
114 using InputImageType = TInputImage;
115 using InputPixelType = typename InputImageType::PixelType;
116
119
121 itkOverrideGetNameOfClassMacro(MinimumProjectionImageFilter);
122
124 itkNewMacro(Self);
125
126 itkConceptMacro(InputPixelTypeGreaterThanComparable,
128 itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<InputPixelType>));
129
130protected:
132 ~MinimumProjectionImageFilter() override = default;
133}; // end
134 // MinimumProjectionImageFilter
135} // end namespace itk
136
137#endif
ProjectionImageFilter< TInputImage, TOutputImage, Functor::MinimumAccumulator< typename TInputImage::PixelType > > Superclass
~MinimumProjectionImageFilter() override=default
typename InputImageType::PixelType InputPixelType
static constexpr T max(const T &)
static unsigned int GetLength(const T &)
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