18#ifndef itkStandardDeviationProjectionImageFilter_h
19#define itkStandardDeviationProjectionImageFilter_h
48template <
typename TInputPixel,
typename TAccumulate>
65 m_Sum = TAccumulate{};
86 typename std::vector<TInputPixel>::iterator it;
90 squaredSum += itk::Math::sqr(*it - mean);
92 return std::sqrt(squaredSum / (
m_Size - 1));
101template <
typename TInputImage,
102 typename TOutputImage,
107 Functor::StandardDeviationAccumulator<typename TInputImage::PixelType, TAccumulate>>
131 itkConceptMacro(InputPixelToOutputPixelTypeGreaterAdditiveOperatorCheck,
StandardDeviationAccumulator(SizeValueType size)
std::vector< TInputPixel > m_Values
void operator()(const TInputPixel &input)
~StandardDeviationAccumulator()=default
typename NumericTraits< TInputPixel >::RealType RealType
Implements transparent reference counting.
StandardDeviationProjectionImageFilter Self
typename InputImageType::PixelType InputPixelType
TInputImage InputImageType
SmartPointer< const Self > ConstPointer
~StandardDeviationProjectionImageFilter() override=default
SmartPointer< Self > Pointer
StandardDeviationProjectionImageFilter()=default
ProjectionImageFilter< TInputImage, TOutputImage, Functor::StandardDeviationAccumulator< typename TInputImage::PixelType, TAccumulate > > Superclass
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType