18 #ifndef itkStandardDeviationProjectionImageFilter_h
19 #define itkStandardDeviationProjectionImageFilter_h
49 template <
typename TInputPixel,
typename TAccumulate>
66 m_Sum = TAccumulate{};
87 typename std::vector<TInputPixel>::iterator it;
91 squaredSum += itk::Math::sqr(*it - mean);
93 return std::sqrt(squaredSum / (
m_Size - 1));
102 template <
typename TInputImage,
103 typename TOutputImage,
108 Functor::StandardDeviationAccumulator<typename TInputImage::PixelType, TAccumulate>>
132 #ifdef ITK_USE_CONCEPT_CHECKING
134 itkConceptMacro(InputPixelToOutputPixelTypeGreaterAdditiveOperatorCheck,