diff --git a/Modules/Filtering/ImageGradient/include/itkVectorGradientMagnitudeImageFilter.h b/Modules/Filtering/ImageGradient/include/itkVectorGradientMagnitudeImageFilter.h index ff1646135a8..719b517c47c 100644 --- a/Modules/Filtering/ImageGradient/include/itkVectorGradientMagnitudeImageFilter.h +++ b/Modules/Filtering/ImageGradient/include/itkVectorGradientMagnitudeImageFilter.h @@ -36,8 +36,8 @@ namespace itk * * \par Overview * This filter has two calculation modes. The first (default) mode calculates - * gradient magnitude as the difference between the largest two eigenvalues in a - * principle component analysis of the partial derivatives [1]. The + * gradient magnitude as the difference between the largest two singular values in a + * singular value decomposition (SVD) of the partial derivatives [1]. The * gradient is then based on the direction of maximal change, and is a * characterization of how "elongated" the point-spread of the analysis is * found to be. @@ -65,8 +65,7 @@ namespace itk * * The second template parameter, TRealType, can be optionally specified to define the * scalar numerical type used in calculations. This is the component type of - * the output image, which will be of itk::Vector, where N is the - * number of channels in the multiple component input image. The default type + * the output image. The default type * of TRealType is float. For extra precision, you may safely change this * parameter to double. * @@ -75,7 +74,7 @@ namespace itk * it is not necessary (or advisable) to set this parameter explicitly. Given * an M-channel input image with dimensionality N, and a numerical type * specified as TRealType, the output image will be of type - * itk::Image, N>. + * itk::Image. * * \par Filter Parameters * The methods Set/GetUsePrincipleComponents and