OpenCV is a programming library aimed at real-time computer vision. OpenCV-Python is the main library of Python that is specifically designed to solve computer vision problems. Suppose you are working on Machine Learning projects than you often come across the scenario when you need to identify the specific object from the image. In this case, you need to draw a rectangle around a particular object to distinguish from other objects of the image.

To separate that object, you need to draw a rectangle around that, and there OpenCV-Python library comes to the rescue.

Python cv2 rectangle

To draw a rectangle using OpenCV in Python, use cv2.rectangle() function. The cv2 rectangle() method is used to draw a rectangle on any image.

Syntax

cv2.rectangle(image, start_point, end_point, color, thickness)

#python #python cv2 rectangle #opencv #opencv-python #programming

Python cv2 rectangle: Draw a Rectangle using OpenCV
6.65 GEEK