ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkSquaredDifferenceImageFilter.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 itkSquaredDifferenceImageFilter_h
19 #define itkSquaredDifferenceImageFilter_h
20 
22 
23 namespace itk
24 {
53 namespace Functor
54 {
55 template< typename TInput1, typename TInput2, typename TOutput >
57 {
58 public:
61  bool operator!=(const SquaredDifference2 &) const
62  {
63  return false;
64  }
65 
66  bool operator==(const SquaredDifference2 & other) const
67  {
68  return !( *this != other );
69  }
70 
71  inline TOutput operator()(const TInput1 & A,
72  const TInput2 & B) const
73  {
74  const double dA = static_cast< double >( A );
75  const double dB = static_cast< double >( B );
76  const double diff = dA - dB;
77 
78  return static_cast< TOutput >( diff * diff );
79  }
80 };
81 }
82 
83 template< typename TInputImage1, typename TInputImage2, typename TOutputImage >
85  public
86  BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage,
87  Functor::SquaredDifference2<
88  typename TInputImage1::PixelType,
89  typename TInputImage2::PixelType,
90  typename TOutputImage::PixelType > >
91 {
92 public:
96  TInputImage1, TInputImage2, TOutputImage,
98  typename TInputImage1::PixelType,
99  typename TInputImage2::PixelType,
100  typename TOutputImage::PixelType >
102 
105 
107  itkNewMacro(Self);
108 
110  itkTypeMacro(SquaredDifferenceImageFilter,
112 
113 #ifdef ITK_USE_CONCEPT_CHECKING
114  // Begin concept checking
115  itkConceptMacro( Input1ConvertibleToDoubleCheck,
117  itkConceptMacro( Input2ConvertibleToDoubleCheck,
119  itkConceptMacro( DoubleConvertibleToOutputCheck,
121  // End concept checking
122 #endif
123 
124 protected:
126  virtual ~SquaredDifferenceImageFilter() ITK_OVERRIDE {}
127 
128 private:
129  ITK_DISALLOW_COPY_AND_ASSIGN(SquaredDifferenceImageFilter);
130 };
131 } // end namespace itk
132 
133 #endif
bool operator==(const SquaredDifference2 &other) const
Base class for all process objects that output image data.
BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::SquaredDifference2< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > > Superclass
bool operator!=(const SquaredDifference2 &) const
Implements pixel-wise the computation of squared difference.
TOutput operator()(const TInput1 &A, const TInput2 &B) const
#define itkConceptMacro(name, concept)
Implements pixel-wise generic operation of two images, or of an image and a constant.