18 #ifndef __itkClampImageFilter_h
19 #define __itkClampImageFilter_h
41 template<
class TInput,
class TOutput = TInput >
72 #ifdef ITK_USE_CONCEPT_CHECKING
89 template<
class TInput,
class TOutput >
95 const double dA =
static_cast< double >( A );
97 if ( dA < m_LowerBound )
102 if ( dA > m_UpperBound )
137 template <
class TInputImage,
class TOutputImage>
140 Functor::Clamp< typename TInputImage::PixelType,
141 typename TOutputImage::PixelType > >
148 typename TOutputImage::PixelType > >
178 void PrintSelf(std::ostream & os,
Indent indent)
const;
182 void operator=(
const Self&);
188 #ifndef ITK_MANUAL_INSTANTIATION
189 #include "itkClampImageFilter.hxx"