ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkMaximumImageFilter.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 itkMaximumImageFilter_h
19 #define itkMaximumImageFilter_h
20 
22 
23 namespace itk
24 {
25 namespace Functor
26 {
32 template< typename TInput1, typename TInput2 = TInput1, typename TOutput = TInput1 >
33 class Maximum
34 {
35 public:
36  Maximum() {}
37  ~Maximum() {}
38  bool operator!=(const Maximum &) const
39  {
40  return false;
41  }
43 
44  bool operator==(const Maximum & other) const
45  {
46  return !( *this != other );
47  }
48 
49  inline TOutput operator()(const TInput1 & A, const TInput2 & B) const
50  {
51  if ( A > B )
52  {
53  return static_cast< TOutput >( A );
54  }
55  else
56  {
57  return static_cast< TOutput >( B );
58  }
59  }
60 };
61 }
80 template< typename TInputImage1, typename TInputImage2 = TInputImage1, typename TOutputImage = TInputImage1 >
82  public
83  BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage,
84  Functor::Maximum<
85  typename TInputImage1::PixelType,
86  typename TInputImage2::PixelType,
87  typename TOutputImage::PixelType > >
88 {
89 public:
92  typedef BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage,
94  typename TInputImage1::PixelType,
95  typename TInputImage2::PixelType,
96  typename TOutputImage::PixelType >
98 
101 
103  itkNewMacro(Self);
104 
106  itkTypeMacro(MaximumImageFilter,
108 
109 #ifdef ITK_USE_CONCEPT_CHECKING
110  // Begin concept checking
111  itkConceptMacro( Input1ConvertibleToOutputCheck,
112  ( Concept::Convertible< typename TInputImage1::PixelType,
113  typename TOutputImage::PixelType > ) );
114  itkConceptMacro( Input2ConvertibleToOutputCheck,
115  ( Concept::Convertible< typename TInputImage2::PixelType,
116  typename TOutputImage::PixelType > ) );
117  itkConceptMacro( Input1GreaterThanInput2Check,
118  ( Concept::GreaterThanComparable< typename TInputImage1::PixelType,
119  typename TInputImage2::PixelType > ) );
120  // End concept checking
121 #endif
122 
123 protected:
125  virtual ~MaximumImageFilter() {}
126 
127 private:
128  MaximumImageFilter(const Self &); //purposely not implemented
129  void operator=(const Self &); //purposely not implemented
130 };
131 } // end namespace itk
132 
133 #endif
SmartPointer< Self > Pointer
TOutput operator()(const TInput1 &A, const TInput2 &B) const
BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::Maximum< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > > Superclass
Base class for all process objects that output image data.
bool operator!=(const Maximum &) const
bool operator==(const Maximum &other) const
void operator=(const Self &)
Implements a pixel-wise operator Max(a,b) between two images.
#define itkConceptMacro(name, concept)
SmartPointer< const Self > ConstPointer
Implements pixel-wise generic operation of two images, or of an image and a constant.