Merge pull request #3478 from akarsakov:rect_fix_typo

pull/3490/head
Vadim Pisarevsky 10 years ago
commit ef534537b4
  1. 2
      modules/core/doc/basic_structures.rst
  2. 2
      modules/core/include/opencv2/core/types.hpp

@ -285,7 +285,7 @@ In addition to the class members, the following operations on rectangles are imp
* ``rect = rect1 & rect2`` (rectangle intersection)
* ``rect = rect1 | rect2`` (minimum area rectangle containing ``rect2`` and ``rect3`` )
* ``rect = rect1 | rect2`` (minimum area rectangle containing ``rect1`` and ``rect2`` )
* ``rect &= rect1, rect |= rect1`` (and the corresponding augmenting operations)

@ -356,7 +356,7 @@ In addition to the class members, the following operations on rectangles are imp
certain amount)
- rect += point, rect -= point, rect += size, rect -= size (augmenting operations)
- rect = rect1 & rect2 (rectangle intersection)
- rect = rect1 | rect2 (minimum area rectangle containing rect2 and rect3 )
- rect = rect1 | rect2 (minimum area rectangle containing rect1 and rect2 )
- rect &= rect1, rect |= rect1 (and the corresponding augmenting operations)
- rect == rect1, rect != rect1 (rectangle comparison)

Loading…
Cancel
Save