ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkMinimumImageFilter.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 itkMinimumImageFilter_h
19 #define itkMinimumImageFilter_h
20 
22 
23 namespace itk
24 {
25 namespace Functor
26 {
32 template< typename TInput1, typename TInput2 = TInput1, typename TOutput = TInput1 >
33 class Minimum
34 {
35 public:
36  Minimum() = default;
37  ~Minimum() = default;
38  bool operator!=(const Minimum &) const
39  {
40  return false;
41  }
43 
44  bool operator==(const Minimum & other) const
45  {
46  return !( *this != other );
47  }
48 
49  inline TOutput operator()(const TInput1 & A, const TInput2 & B) const
50  { return static_cast< TOutput >( ( A < B ) ? A : B ); }
51 };
52 }
53 
72 template< typename TInputImage1, typename TInputImage2 = TInputImage1, typename TOutputImage = TInputImage1 >
74  public
75  BinaryGeneratorImageFilter< TInputImage1, TInputImage2, TOutputImage >
76 {
77 public:
78  ITK_DISALLOW_COPY_AND_ASSIGN(MinimumImageFilter);
79 
83 
86  using FunctorType = Functor::Minimum< typename TInputImage1::PixelType,
87  typename TInputImage2::PixelType,
88  typename TOutputImage::PixelType >;
89 
91  itkNewMacro(Self);
92 
94  itkTypeMacro(MinimumImageFilter,
96 
97 #ifdef ITK_USE_CONCEPT_CHECKING
98  // Begin concept checking
99  itkConceptMacro( Input1ConvertibleToInput2Check,
100  ( Concept::Convertible< typename TInputImage1::PixelType,
101  typename TInputImage2::PixelType > ) );
102  itkConceptMacro( Input2ConvertibleToOutputCheck,
103  ( Concept::Convertible< typename TInputImage2::PixelType,
104  typename TOutputImage::PixelType > ) );
105  itkConceptMacro( Input1LessThanInput2Check,
106  ( Concept::LessThanComparable< typename TInputImage1::PixelType,
107  typename TInputImage2::PixelType > ) );
108  // End concept checking
109 #endif
110 
111 protected:
113  {
114 #if !defined( ITK_WRAPPING_PARSER )
116 #endif
117  }
118 
119  ~MinimumImageFilter() override = default;
120 };
121 } // end namespace itk
122 
123 #endif
Functor::Minimum< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > FunctorType
~MinimumImageFilter() override=default
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.
bool operator==(const Minimum &other) const
TOutput operator()(const TInput1 &A, const TInput2 &B) const
Implements pixel-wise generic operation of two images, or of an image and a constant.
void SetFunctor(const std::function< ConstRefFunctionType > &f)
Implements a pixel-wise operator Min(a,b) between two images.
#define itkConceptMacro(name, concept)
bool operator!=(const Minimum &) const