fix cast in text detection sample

This commit is contained in:
Tsukasa Sugiura 2021-09-24 15:35:42 +09:00
parent 86a51015b1
commit f9bd83c854

View File

@ -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