代码拉取完成,页面将自动刷新
import dlib
import cv2
# 这个时加载拍摄好的视频, 来识别人脸,但是没成过
# 加载并初始化检测器
detector = dlib.get_frontal_face_detector()
camera = cv2.VideoCapture('D:\\2222.mp4')
if not camera.isOpened():
print("cannot open camear")
exit(0)
j=0
while True:
ret, frame = camera.read()
if not ret:
break
frame_new = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
# 检测脸部
dets = detector(frame_new, 1)
print("Number of faces detected: {}".format(len(dets)))
# 查找脸部位置
for i, face in enumerate(dets):
print("Detection {}: Left: {} Top: {} Right: {} Bottom: {} ".format(
i, face.left(), face.top(), face.right(), face.bottom()))
# 绘制脸部位置
cv2.rectangle(frame, (face.left(), face.top()), (face.right(), face.bottom()), (0, 255, 0), 1)
#保存脸部图片
img1=frame[face.top():face.bottom(),face.left():face.right()]
cv2.imwrite("data/zy"+str(j)+'.jpg',img1)
j=j+1
cv2.imshow("Camera", frame)
key = cv2.waitKey(1)
if key == 27:
break
cv2.destroyAllWindows()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。