import cv2
import threading
import RPi.GPIO as GPIO
# import time
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.setup(23, GPIO.OUT)
GPIO.setup(24, GPIO.OUT)
GPIO.output(23, GPIO.HIGH)
GPIO.output(24, GPIO.HIGH)
cap = cv2.VideoCapture(0) # 开启摄像头
classifier = cv2.CascadeClassifier('haarcascade_frontalface_alt2.xml')
ok, faceImg = cap.read() # 读取摄像头图像
if ok is False:
print('无法读取到摄像头!')
high=faceImg.shape[0]
width=faceImg.shape[1]
left_point = width/2+25
right_point = width/2-25
gray = cv2.cvtColor(faceImg,cv2.COLOR_BGR2GRAY)
faceRects = classifier.detectMultiScale(gray,scaleFactor=1.2,minNeighbors=3,minSize=(32, 32))
close=0
def LEFT():
GPIO.output(23, GPIO.LOW)
GPIO.output(24, GPIO.HIGH)
def RIGHT():
GPIO.output(23, GPIO.HIGH)
GPIO.output(24, GPIO.LOW)
def STOP():
GPIO.output(23, GPIO.HIGH)
GPIO.output(24, GPIO.HIGH)
def track():
while close==0:
gray = cv2.cvtColor(faceImg,cv2.COLOR_BGR2GRAY)
faceRects = classifier.detectMultiScale(gray,scaleFactor=1.2,minNeighbors=3,minSize=(32, 32))
if len(faceRects):
x,y,w,h = faceRects[0]
# 框选出人脸 最后一个参数2是框线宽度
# cv2.rectangle(faceImg,(x, y), (x + w, y + h), (0,255,0), 2)
central_point = x+w/2
if central_point > left_point:
LEFT()
print("Left")
elif central_point < right_point:
RIGHT()
print("Right")
else:
STOP()
print("Central")
STOP()
print("Stop")
thread1 = threading.Thread(target=track)
thread1.start()
# 循环读取图像
while True:
faceImg = cap.read()[1] # 读取摄像头图像
cv2.imshow("faceImg",cv2.flip(faceImg,1))
if cv2.waitKey(10) == 27: # 通过esc键退出摄像
break
# 关闭摄像头
cap.release()
cv2.destroyAllWindows()
close=1
STOP()
print("Stop")
网易独家音乐人MikeZhou
- 粉丝: 4w+
- 资源: 79
最新资源
- 基于Springboot+Vue的信息技术知识竞赛系统的设计-毕业源码案例设计(高分项目).zip
- chrom,edge浏览器插件
- 快速定制中国传统节日头像(全套源码) 开箱即用
- 基于Springboot+Vue的新闻推荐系统毕业源码案例设计(高分项目).zip
- 12MONTHTEXTTEST
- 基于springboot+vue的学生干部管理系统-毕业源码案例设计(高分毕业设计).zip
- 基于Springboot+Vue的学生心理咨询评估系统毕业源码案例设计(95分以上).zip
- 基于Springboot+Vue的学生用品采购系统-毕业源码案例设计(源码+数据库).zip
- 机器学习实战:结合随机森林(RF)与递归特征消除和交叉验证(RFECV)进行精准特征选择,使用LightGBM与过采样技术应对极度不均衡的正负样本,并通过SHAP进行模型解释的电信客户流失预测
- 基于Springboot+Vue的医药管理系统-毕业源码案例设计(高分毕业设计).zip
- 基于Springboot+Vue的药店管理系统的设计与实现-毕业源码案例设计(源码+论文).zip
- 基于Springboot+Vue的医院挂号就诊系统-毕业源码案例设计(源码+论文).zip
- 基于Springboot+Vue的疫情隔离管理系统-毕业源码案例设计(高分毕业设计).zip
- 基于Springboot+Vue的医院药品管理系统设计与实现-毕业源码案例设计(源码+项目说明+演示视频).zip
- 基于Springboot+Vue的医院资源管理系统-毕业源码案例设计(高分项目).zip
- 酒驾风险行为数据集.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
评论0