python bounding box on image

Solutions on MaxInterview for python bounding box on image by the best coders in the world

showing results for - "python bounding box on image"
Arianna
28 Feb 2019
1# cv2.rectangle(img, pt1, pt2, color, thickness, lineType, shift)
2cv2.rectangle(img, (x1, y1), (x2, y2), (255,0,0), 2)
3
4"""
5x1,y1 ------
6|          |
7|          |
8|          |
9--------x2,y2
10"""