Skip to content

Commit 540982c

Browse files
committed
Merge pull request opencv#18331 from or-toledano:3.4
2 parents 8cb7eae + 49ba744 commit 540982c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/py_tutorials/py_imgproc/py_contours/py_contour_properties/py_contour_properties.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ pixelpoints = np.transpose(np.nonzero(mask))
7878
Here, two methods, one using Numpy functions, next one using OpenCV function (last commented line)
7979
are given to do the same. Results are also same, but with a slight difference. Numpy gives
8080
coordinates in **(row, column)** format, while OpenCV gives coordinates in **(x,y)** format. So
81-
basically the answers will be interchanged. Note that, **row = x** and **column = y**.
81+
basically the answers will be interchanged. Note that, **row = y** and **column = x**.
8282

8383
7. Maximum Value, Minimum Value and their locations
8484
---------------------------------------------------

0 commit comments

Comments
 (0)