ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkMinimumProjectionImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 
24 namespace itk
25 {
45 namespace Functor
46 {
47 template< typename TInputPixel >
49 {
50 public:
52  ~MinimumAccumulator()= default;
53 
54  inline void Initialize()
55  {
57  }
58 
59  inline void operator()(const TInputPixel & input)
60  {
61  m_Minimum = std::min(m_Minimum, input);
62  }
63 
64  inline TInputPixel GetValue()
65  {
66  return m_Minimum;
67  }
68 
69  TInputPixel m_Minimum;
70 };
71 } // end namespace Function
72 
73 template< typename TInputImage, typename TOutputImage >
75  ProjectionImageFilter< TInputImage, TOutputImage,
76  Functor::MinimumAccumulator< typename TInputImage::PixelType > >
77 {
78 public:
79  ITK_DISALLOW_COPY_AND_ASSIGN(MinimumProjectionImageFilter);
80 
82  using Superclass = ProjectionImageFilter< TInputImage, TOutputImage,
84  typename TInputImage::PixelType > >;
85 
86  using InputImageType = TInputImage;
87  using InputPixelType = typename InputImageType::PixelType;
88 
91 
94 
96  itkNewMacro(Self);
97 
98 #ifdef ITK_USE_CONCEPT_CHECKING
99  // Begin concept checking
100  itkConceptMacro( InputPixelTypeGreaterThanComparable,
102  itkConceptMacro( InputHasNumericTraitsCheck,
104  // End concept checking
105 #endif
106 
107 protected:
108  MinimumProjectionImageFilter() = default;
109  ~MinimumProjectionImageFilter() override = default;
110 }; // end
111  // MinimumProjectionImageFilter
112 } //end namespace itk
113 
114 #endif
Define numeric traits for std::vector.
unsigned long SizeValueType
Definition: itkIntTypes.h:83
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Base class for all process objects that output image data.
Implements an accumulation of an image along a selected direction.
~MinimumProjectionImageFilter() override=default
typename InputImageType::PixelType InputPixelType
#define itkConceptMacro(name, concept)