18 #ifndef __itkVectorCastImageFilter_h
19 #define __itkVectorCastImageFilter_h
44 template<
class TInput,
class TOutput >
57 return !( *
this != other );
62 typedef typename TOutput::ValueType OutputValueType;
65 for (
unsigned int k = 0; k < TOutput::Dimension; k++ )
67 value[k] =
static_cast< OutputValueType
>( A[k] );
74 template<
class TInputImage,
class TOutputImage >
78 Functor::VectorCast< typename TInputImage::PixelType,
79 typename TOutputImage::PixelType > >
85 TInputImage, TOutputImage,
99 #ifdef ITK_USE_CONCEPT_CHECKING
107 typename TOutputImage::PixelType::ValueType > ) );
118 void operator=(
const Self &);