18 #ifndef __itkBinaryThresholdProjectionImageFilter_h
19 #define __itkBinaryThresholdProjectionImageFilter_h
51 template<
class TInputPixel,
class TOutputPixel >
91 template<
class TInputImage,
class TOutputImage >
94 Function::BinaryThresholdAccumulator<
95 typename TInputImage::PixelType,
96 typename TOutputImage::PixelType > >
102 typename TInputImage::PixelType,
142 #ifdef ITK_USE_CONCEPT_CHECKING
162 void PrintSelf(std::ostream & os,
Indent indent)
const
164 Superclass::PrintSelf(os, indent);
169 os << indent <<
"ForegroundValue: "
170 <<
static_cast< InputPixelPrintType
>( m_ForegroundValue )
174 OutputPixelPrintType;
176 os << indent <<
"BackgroundValue: "
177 <<
static_cast< OutputPixelPrintType
>( m_BackgroundValue )
180 os << indent <<
"ThresholdValue: "
181 <<
static_cast< InputPixelPrintType
>( m_ThresholdValue )
189 accumulator.m_ForegroundValue = m_ForegroundValue;
190 accumulator.m_BackgroundValue = m_BackgroundValue;
191 accumulator.m_ThresholdValue = m_ThresholdValue;
207 void operator=(
const Self &);