Change Canny input image description, we can use multichannel image now
authorvbystricky <user@user-pc.(none)>
Wed, 2 Apr 2014 09:27:29 +0000 (13:27 +0400)
committervbystricky <user@user-pc.(none)>
Mon, 7 Apr 2014 10:26:48 +0000 (14:26 +0400)
modules/imgproc/doc/feature_detection.rst

index de16c07..2187b8f 100644 (file)
@@ -1,4 +1,4 @@
-Feature Detection
+Feature Detection
 =================
 
 .. highlight:: cpp
@@ -15,9 +15,9 @@ Finds edges in an image using the [Canny86]_ algorithm.
 
 .. ocv:cfunction:: void cvCanny( const CvArr* image, CvArr* edges, double threshold1, double threshold2, int aperture_size=3 )
 
-    :param image: single-channel 8-bit input image.
+    :param image: 8-bit input image.
 
-    :param edges: output edge map; it has the same size and type as  ``image`` .
+    :param edges: output edge map; single channels 8-bit image, which has the same size as  ``image`` .
 
     :param threshold1: first threshold for the hysteresis procedure.