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

itkCosImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkCosImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2008-10-13 18:54:27 $
00007   Version:   $Revision: 1.23 $
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 __itkCosImageFilter_h
00018 #define __itkCosImageFilter_h
00019 
00020 #include "itkUnaryFunctorImageFilter.h"
00021 #include "vnl/vnl_math.h"
00022 
00023 namespace itk
00024 {
00025   
00044 namespace Functor {  
00045   
00046 template< class TInput, class TOutput>
00047 class Cos
00048 {
00049 public:
00050   Cos() {};
00051   ~Cos() {};
00052   bool operator!=( const Cos & ) const
00053     {
00054     return false;
00055     }
00056   bool operator==( const Cos & other ) const
00057     {
00058     return !(*this != other);
00059     }
00060   inline TOutput operator()( const TInput & A )
00061     {
00062     return static_cast<TOutput>(cos( static_cast<double>(A)) );
00063     }
00064 }; 
00065 
00066 }
00067 template <class TInputImage, class TOutputImage>
00068 class ITK_EXPORT CosImageFilter :
00069     public
00070 UnaryFunctorImageFilter<TInputImage,TOutputImage, 
00071                         Functor::Cos< 
00072   typename TInputImage::PixelType, 
00073   typename TOutputImage::PixelType>   >
00074 {
00075 public:
00077   typedef CosImageFilter            Self;
00078   typedef UnaryFunctorImageFilter<
00079     TInputImage,TOutputImage, 
00080     Functor::Cos< typename TInputImage::PixelType, 
00081                   typename TOutputImage::PixelType> >
00082                                     Superclass;
00083   typedef SmartPointer<Self>        Pointer;
00084   typedef SmartPointer<const Self>  ConstPointer;
00085 
00087   itkNewMacro(Self);
00088 
00090   itkTypeMacro(CosImageFilter, 
00091                UnaryFunctorImageFilter);
00092 
00093 #ifdef ITK_USE_CONCEPT_CHECKING
00094 
00095   itkConceptMacro(InputConvertibleToDoubleCheck,
00096     (Concept::Convertible<typename TInputImage::PixelType, double>));
00097   itkConceptMacro(DoubleConvertibleToOutputCheck,
00098     (Concept::Convertible<double, typename TOutputImage::PixelType>));
00099 
00101 #endif
00102 
00103 protected:
00104   CosImageFilter() {}
00105   virtual ~CosImageFilter() {}
00106 
00107 private:
00108   CosImageFilter(const Self&); //purposely not implemented
00109   void operator=(const Self&); //purposely not implemented
00110 
00111 };
00112 
00113 } // end namespace itk
00114 
00115 
00116 #endif
00117 

Generated at Wed Nov 5 21:00:15 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000