Template class for 2D rectangles, described by the following parameters::
Template class for 2D rectangles, described by the following parameters:
* Coordinates of the top-left corner. This is a default interpretation of ``Rect_::x`` and ``Rect_::y`` in OpenCV. Though, in your algorithms you may count ``x`` and ``y`` from the bottom-left corner.
:param m: Assigned, right-hand-side matrix. Matrix assignment is an O(1) operation. This means that no data is copied but the data is shared and the reference counter, if any, is incremented. Before assigning new data, the old data is de-referenced via :ocv:func:`Mat::release` .
...
...
@@ -855,7 +855,7 @@ The method makes a new header for the specified matrix row and returns it. This
A.row(i) = A.row(j) + 0;
// this is a bit longe, but the recommended method.