00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkRescaleIntensityImageFilter_h
00018 #define __itkRescaleIntensityImageFilter_h
00019
00020 #include "itkUnaryFunctorImageFilter.h"
00021
00022 namespace itk
00023 {
00024
00025
00026
00027 namespace Functor {
00028
00029 template< typename TInput, typename TOutput>
00030 class IntensityLinearTransform
00031 {
00032 public:
00033 typedef typename NumericTraits< TInput >::RealType RealType;
00034 IntensityLinearTransform()
00035 {
00036 m_Factor = 1.0;
00037 m_Offset = 0.0;
00038 m_Minimum = NumericTraits<TOutput>::NonpositiveMin();
00039 m_Maximum = NumericTraits<TOutput>::max();
00040 }
00041 ~IntensityLinearTransform() {}
00042 void SetFactor( RealType a ) { m_Factor = a; }
00043 void SetOffset( RealType b ) { m_Offset = b; }
00044 void SetMinimum( TOutput min ) { m_Minimum = min; }
00045 void SetMaximum( TOutput max ) { m_Maximum = max; }
00046 bool operator!=( const IntensityLinearTransform & other ) const
00047 {
00048 if( m_Factor != other.m_Factor ||
00049 m_Offset != other.m_Offset ||
00050 m_Maximum != other.m_Maximum ||
00051 m_Minimum != other.m_Minimum )
00052 {
00053 return true;
00054 }
00055 return false;
00056 }
00057 bool operator==( const IntensityLinearTransform & other ) const
00058 {
00059 return !(*this != other);
00060 }
00061 inline TOutput operator()( const TInput & x )
00062 {
00063 RealType value = static_cast<RealType>(x) * m_Factor + m_Offset;
00064 TOutput result = static_cast<TOutput>( value );
00065 result = ( result > m_Maximum ) ? m_Maximum : result;
00066 result = ( result < m_Minimum ) ? m_Minimum : result;
00067 return result;
00068 }
00069 private:
00070 RealType m_Factor;
00071 RealType m_Offset;
00072 TOutput m_Maximum;
00073 TOutput m_Minimum;
00074 };
00075
00076 }
00077
00078
00104 template <typename TInputImage, typename TOutputImage=TInputImage>
00105 class ITK_EXPORT RescaleIntensityImageFilter :
00106 public
00107 UnaryFunctorImageFilter<TInputImage,TOutputImage,
00108 Functor::IntensityLinearTransform<
00109 typename TInputImage::PixelType,
00110 typename TOutputImage::PixelType> >
00111 {
00112 public:
00114 typedef RescaleIntensityImageFilter Self;
00115 typedef UnaryFunctorImageFilter<TInputImage,TOutputImage,
00116 Functor::IntensityLinearTransform<
00117 typename TInputImage::PixelType,
00118 typename TOutputImage::PixelType> > Superclass;
00119 typedef SmartPointer<Self> Pointer;
00120 typedef SmartPointer<const Self> ConstPointer;
00121
00122 typedef typename TOutputImage::PixelType OutputPixelType;
00123 typedef typename TInputImage::PixelType InputPixelType;
00124 typedef typename NumericTraits<InputPixelType>::RealType RealType;
00125
00127 itkNewMacro(Self);
00128
00129 itkSetMacro( OutputMinimum, OutputPixelType );
00130 itkSetMacro( OutputMaximum, OutputPixelType );
00131 itkGetConstReferenceMacro( OutputMinimum, OutputPixelType );
00132 itkGetConstReferenceMacro( OutputMaximum, OutputPixelType );
00133
00137 itkGetConstReferenceMacro( Scale, RealType );
00138 itkGetConstReferenceMacro( Shift, RealType );
00140
00143 itkGetConstReferenceMacro( InputMinimum, InputPixelType );
00144 itkGetConstReferenceMacro( InputMaximum, InputPixelType );
00146
00148 void BeforeThreadedGenerateData(void);
00149
00151 void PrintSelf(std::ostream& os, Indent indent) const;
00152
00153 #ifdef ITK_USE_CONCEPT_CHECKING
00154
00155 itkConceptMacro(InputHasNumericTraitsCheck,
00156 (Concept::HasNumericTraits<InputPixelType>));
00157 itkConceptMacro(OutputHasNumericTraitsCheck,
00158 (Concept::HasNumericTraits<OutputPixelType>));
00159 itkConceptMacro(RealTypeMultiplyOperatorCheck,
00160 (Concept::MultiplyOperator<RealType>));
00161 itkConceptMacro(RealTypeAdditiveOperatorsCheck,
00162 (Concept::AdditiveOperators<RealType>));
00163
00165 #endif
00166
00167 protected:
00168 RescaleIntensityImageFilter();
00169 virtual ~RescaleIntensityImageFilter() {};
00170
00171 private:
00172 RescaleIntensityImageFilter(const Self&);
00173 void operator=(const Self&);
00174
00175 RealType m_Scale;
00176 RealType m_Shift;
00177
00178 InputPixelType m_InputMinimum;
00179 InputPixelType m_InputMaximum;
00180
00181 OutputPixelType m_OutputMinimum;
00182 OutputPixelType m_OutputMaximum;
00183
00184 };
00185
00186
00187
00188 }
00189
00190 #ifndef ITK_MANUAL_INSTANTIATION
00191 #include "itkRescaleIntensityImageFilter.txx"
00192 #endif
00193
00194 #endif
00195