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

itkLog10ImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkLog10ImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2003/09/10 14:28:51 $
00007   Version:   $Revision: 1.16 $
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 __itkLog10ImageFilter_h
00018 #define __itkLog10ImageFilter_h
00019 
00020 #include "itkUnaryFunctorImageFilter.h"
00021 #include "vnl/vnl_math.h"
00022 
00023 namespace itk
00024 {
00025   
00030 namespace Function {  
00031   
00032 template< class TInput, class TOutput>
00033 class Log10
00034 {
00035 public:
00036   Log10() {}
00037   ~Log10() {}
00038   inline TOutput operator()( const TInput & A )
00039   { return (TOutput)log10((double)A); }
00040 }; 
00041 }
00042 template <class TInputImage, class TOutputImage>
00043 class ITK_EXPORT Log10ImageFilter :
00044     public
00045 UnaryFunctorImageFilter<TInputImage,TOutputImage, 
00046                         Function::Log10< 
00047   typename TInputImage::PixelType, 
00048   typename TOutputImage::PixelType>   >
00049 {
00050 public:
00052   typedef Log10ImageFilter  Self;
00053   typedef UnaryFunctorImageFilter<TInputImage,TOutputImage, 
00054                                   Function::Log10< typename TInputImage::PixelType, 
00055                                                    typename TOutputImage::PixelType> >  Superclass;
00056   typedef SmartPointer<Self>   Pointer;
00057   typedef SmartPointer<const Self>  ConstPointer;
00058 
00060   itkNewMacro(Self);
00061   
00062 protected:
00063   Log10ImageFilter() {}
00064   virtual ~Log10ImageFilter() {}
00065 
00066 private:
00067   Log10ImageFilter(const Self&); //purposely not implemented
00068   void operator=(const Self&); //purposely not implemented
00069 
00070 
00071 };
00072 
00073 } // end namespace itk
00074 
00075 
00076 #endif

Generated at Wed May 24 23:37:01 2006 for ITK by doxygen 1.3.5 written by Dimitri van Heesch, © 1997-2000