
Draw Rectangle, Print Text on an image | OpenCV Tutorial
In Python OpenCV Tutorial, Explained How to put text and rectangle over the image using python OpenCV? Draw Rectangle on Image # Video: import cv2
import numpy as np img_path = r"C:\Users\kashz\AI Life\AI Projects - IAIP, PTs (Web + Channel)\02 OpenCV\000 opencv tutorial\data\images\adult-beard-blur-842567.jpg" image = cv2.imread(img_path)
image = cv2.resize(image, (1280, 720)) pt1 = (400,...
Read More