18 #ifndef __itkMatrixIndexSelectionImageFilter_h
19 #define __itkMatrixIndexSelectionImageFilter_h
27 template<
class TInput,
class TOutput >
49 return !( *
this != other );
54 return static_cast< TOutput
>( A[
m_I][
m_J] );
80 template<
class TInputImage,
class TOutputImage >
84 Functor::MatrixIndexSelection< typename TInputImage::PixelType,
85 typename TOutputImage::PixelType > >
106 void SetIndices(
unsigned int i,
unsigned int j)
108 this->GetFunctor().SetIndices(i, j);
113 void GetIndices(
unsigned int & i,
unsigned int & j)
const
114 {
return this->GetFunctor().GetIndices(i, j); }
116 #ifdef ITK_USE_CONCEPT_CHECKING
128 void operator=(
const Self &);