From 7dc147c1f2faa7f3dbe7f373bbd6d46d40b820e9 Mon Sep 17 00:00:00 2001 From: Shervin Emami Date: Fri, 26 Jul 2013 19:13:25 -0700 Subject: [PATCH] Changed cornerHarris description to say it finds corners, not edges --- modules/imgproc/doc/feature_detection.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/imgproc/doc/feature_detection.rst b/modules/imgproc/doc/feature_detection.rst index c88eaef..700105a 100644 --- a/modules/imgproc/doc/feature_detection.rst +++ b/modules/imgproc/doc/feature_detection.rst @@ -85,7 +85,7 @@ The output of the function can be used for robust edge or corner detection. cornerHarris ------------ -Harris edge detector. +Harris corner detector. .. ocv:function:: void cornerHarris( InputArray src, OutputArray dst, int blockSize, int ksize, double k, int borderType=BORDER_DEFAULT ) @@ -105,7 +105,7 @@ Harris edge detector. :param borderType: Pixel extrapolation method. See :ocv:func:`borderInterpolate` . -The function runs the Harris edge detector on the image. Similarly to +The function runs the Harris corner detector on the image. Similarly to :ocv:func:`cornerMinEigenVal` and :ocv:func:`cornerEigenValsAndVecs` , for each pixel :math:`(x, y)` it calculates a -- 2.7.4