From 88f68a3fe0844581e53a8f0fd23c2e3617019662 Mon Sep 17 00:00:00 2001 From: Han Qiang Date: Mon, 14 Oct 2013 23:15:07 +0800 Subject: [PATCH] Fixed typo in document. Signed-off-by: Han Qiang --- modules/core/doc/basic_structures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/doc/basic_structures.rst b/modules/core/doc/basic_structures.rst index 16d7e500a8..a4bce9044d 100644 --- a/modules/core/doc/basic_structures.rst +++ b/modules/core/doc/basic_structures.rst @@ -1169,7 +1169,7 @@ Various Mat constructors :param sizes: Array of integers specifying an n-dimensional array shape. - :param type: Array type. Use ``CV_8UC1, ..., CV_64FC4`` to create 1-4 channel matrices, or ``CV_8UC(n), ..., CV_64FC(n)`` to create multi-channel (up to ``CV_MAX_CN`` channels) matrices. + :param type: Array type. Use ``CV_8UC1, ..., CV_64FC4`` to create 1-4 channel matrices, or ``CV_8UC(n), ..., CV_64FC(n)`` to create multi-channel (up to ``CV_CN_MAX`` channels) matrices. :param s: An optional value to initialize each matrix element with. To set all the matrix elements to the particular value after the construction, use the assignment operator ``Mat::operator=(const Scalar& value)`` .