mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 09:25:45 +08:00
fix cast in text detection sample
This commit is contained in:
parent
86a51015b1
commit
f9bd83c854
@ -214,8 +214,8 @@ def main():
|
||||
0.5, (255, 0, 0))
|
||||
|
||||
for j in range(4):
|
||||
p1 = (vertices[j][0], vertices[j][1])
|
||||
p2 = (vertices[(j + 1) % 4][0], vertices[(j + 1) % 4][1])
|
||||
p1 = (int(vertices[j][0]), int(vertices[j][1]))
|
||||
p2 = (int(vertices[(j + 1) % 4][0]), int(vertices[(j + 1) % 4][1]))
|
||||
cv.line(frame, p1, p2, (0, 255, 0), 1)
|
||||
|
||||
# Put efficiency information
|
||||
|
Loading…
Reference in New Issue
Block a user