I'm using python and OpenCV to get a picture from the webcam, and I need to realize how to draw a hover over my picture, simply a straightforward green hover with straightforward fill
code:
import cv2
import numpy
import sys
if __name__ == '__main__':
#get current frame from webcam
cam = cv2.VideoCapture(0)
img = cam.read()
#how draw a circle????
cv2.imshow('WebCam', img)
cv2.waitKey()