mirror of
https://github.com/opencv/opencv.git
synced 2025-08-06 06:26:29 +08:00
Update match_template.py to fix doc bug
shape has Y first, then X. See issue #27292
This commit is contained in:
parent
ce4c3f64e0
commit
d5a5b0e85f
@ -86,8 +86,8 @@ def MatchingMethod(param):
|
||||
## [match_loc]
|
||||
|
||||
## [imshow]
|
||||
cv.rectangle(img_display, matchLoc, (matchLoc[0] + templ.shape[0], matchLoc[1] + templ.shape[1]), (0,0,0), 2, 8, 0 )
|
||||
cv.rectangle(result, matchLoc, (matchLoc[0] + templ.shape[0], matchLoc[1] + templ.shape[1]), (0,0,0), 2, 8, 0 )
|
||||
cv.rectangle(img_display, matchLoc, (matchLoc[0] + templ.shape[1], matchLoc[1] + templ.shape[0]), (0,0,0), 2, 8, 0 )
|
||||
cv.rectangle(result, matchLoc, (matchLoc[0] + templ.shape[1], matchLoc[1] + templ.shape[0]), (0,0,0), 2, 8, 0 )
|
||||
cv.imshow(image_window, img_display)
|
||||
cv.imshow(result_window, result)
|
||||
## [imshow]
|
||||
|
Loading…
Reference in New Issue
Block a user