如何在 python 帧上实时显示人脸检测?

How to show real-time in face detection on a frame in python?

我使用 OpenCV 在 python 中进行了人脸检测, 我想在红色的框架上添加实时(AM 和 PM)

获取当前日期和时间

import datetime
now = datetime.datetime.now()

在框架中添加文本矩形

# Draw a rectangle around the text
ori = cv2.rectangle(img,(10,180), (500,300), (0,0,255), 4)
font = cv2.FONT_HERSHEY_SIMPLEX
cv2.putText(ori,'Put-Your-Format-Here',(30,256), font, 2.5,(255,255,255),2,cv2.LINE_AA)