Answers for "use bounding box to extract image cv2"

2

draw bounding box on image python cv2

# cv2.rectangle(img, pt1, pt2, color, thickness, lineType, shift)
cv2.rectangle(img, (x1, y1), (x2, y2), (255,0,0), 2)

"""
x1,y1 ------
|          |
|          |
|          |
--------x2,y2
"""
Posted by: Guest on April-06-2021

Code answers related to "use bounding box to extract image cv2"

Python Answers by Framework

Browse Popular Code Answers by Language