Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkTernaryMagnitudeSquaredImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkTernaryMagnitudeSquaredImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2007/09/27 11:36:41 $
00007   Version:   $Revision: 1.20 $
00008 
00009   Copyright (c) Insight Software Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 #ifndef __itkTernaryMagnitudeSquaredImageFilter_h
00018 #define __itkTernaryMagnitudeSquaredImageFilter_h
00019 
00020 #include "itkTernaryFunctorImageFilter.h"
00021 
00022 namespace itk
00023 {
00024   
00034 namespace Function {  
00035   
00036 template< class TInput1, class TInput2, class TInput3, class TOutput>
00037 class ModulusSquare3
00038 {
00039 public:
00040   ModulusSquare3() {}
00041   ~ModulusSquare3() {}
00042   bool operator!=( const ModulusSquare3 & ) const
00043   {
00044     return false;
00045   }
00046   bool operator==( const ModulusSquare3 & other ) const
00047   {
00048     return !(*this != other);
00049   }
00050   inline TOutput operator()( const TInput1 & A, 
00051                              const TInput2 & B,
00052                              const TInput3 & C)
00053   { return (TOutput)(A*A + B*B + C*C); }
00054 }; 
00055 }
00056 
00057 template <class TInputImage1, class TInputImage2, 
00058           class TInputImage3, class TOutputImage>
00059 class ITK_EXPORT TernaryMagnitudeSquaredImageFilter :
00060     public
00061 TernaryFunctorImageFilter<TInputImage1,TInputImage2,
00062                           TInputImage3,TOutputImage, 
00063                           Function::ModulusSquare3< 
00064   typename TInputImage1::PixelType, 
00065   typename TInputImage2::PixelType,
00066   typename TInputImage3::PixelType,
00067   typename TOutputImage::PixelType >   >
00068 {
00069 public:
00071   typedef TernaryMagnitudeSquaredImageFilter  Self;
00072   typedef TernaryFunctorImageFilter<TInputImage1,TInputImage2,
00073                                     TInputImage3,TOutputImage, 
00074                                     Function::ModulusSquare3< 
00075     typename TInputImage1::PixelType, 
00076     typename TInputImage2::PixelType,
00077     typename TInputImage3::PixelType,
00078     typename TOutputImage::PixelType >   >  Superclass;
00079   typedef SmartPointer<Self>   Pointer;
00080   typedef SmartPointer<const Self>  ConstPointer;
00081 
00083   itkNewMacro(Self);
00084 
00086   itkTypeMacro(TernaryMagnitudeSquaredImageFilter, 
00087                TernaryFunctorImageFilter);
00088 
00089 protected:
00090   TernaryMagnitudeSquaredImageFilter() {}
00091   virtual ~TernaryMagnitudeSquaredImageFilter() {}
00092 
00093 private:
00094   TernaryMagnitudeSquaredImageFilter(const Self&); //purposely not implemented
00095   void operator=(const Self&); //purposely not implemented
00096 
00097 
00098 };
00099 
00100 } // end namespace itk
00101 
00102 
00103 #endif
00104 

Generated at Tue Jul 29 22:49:41 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000