From c8378fa4c4871e7cf743ed66e5d6865c01f79598 Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Tue, 2 Aug 2011 19:50:13 +0000 Subject: [PATCH] added "inclusive" & "exclusive" adjectives to startrow, endrow, startcol, endcol parameter descriptions (ticket #1272) --- modules/core/doc/basic_structures.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/core/doc/basic_structures.rst b/modules/core/doc/basic_structures.rst index 1efacbafd4..208554c0d5 100644 --- a/modules/core/doc/basic_structures.rst +++ b/modules/core/doc/basic_structures.rst @@ -913,9 +913,9 @@ Creates a matrix header for the specified row span. .. ocv:function:: Mat Mat::rowRange(const Range& r) const - :param startrow: A 0-based start index of the row span. + :param startrow: An inclusive 0-based start index of the row span. - :param endrow: A 0-based ending index of the row span. + :param endrow: An exclusive 0-based ending index of the row span. :param r: :ocv:class:`Range` structure containing both the start and the end indices. @@ -931,9 +931,9 @@ Creates a matrix header for the specified row span. .. ocv:function:: Mat Mat::colRange(const Range& r) const - :param startcol: A 0-based start index of the column span. + :param startcol: An inclusive 0-based start index of the column span. - :param endcol: A 0-based ending index of the column span. + :param endcol: An exclusive 0-based ending index of the column span. :param r: :ocv:class:`Range` structure containing both the start and the end indices.