00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
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&);
00068
void operator=(
const Self&);
00069
00070
00071 };
00072
00073 }
00074
00075
00076
#endif