Merge pull request #3199 from apavlenko:fix_docs_typo

pull/3201/head
Alexander Alekhin 10 years ago
commit f03b11d271
  1. 4
      modules/core/doc/basic_structures.rst

@ -264,8 +264,8 @@ OpenCV typically assumes that the top and left boundary of the rectangle are inc
Virtually every loop over an image
ROI in OpenCV (where ROI is specified by ``Rect_<int>`` ) is implemented as: ::
for(int y = roi.y; y < roi.y + rect.height; y++)
for(int x = roi.x; x < roi.x + rect.width; x++)
for(int y = roi.y; y < roi.y + roi.height; y++)
for(int x = roi.x; x < roi.x + roi.width; x++)
{
// ...
}

Loading…
Cancel
Save