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")
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
【V1.1】基于树莓派的OpenCV-Python摄像头人脸追踪系统 该系统目前结合了树莓派+51单片机 树莓派主要用于运行Python程序 追踪人脸 同时用GPIO口给出信号 单片机用于控制42步进电机导轨左右移动 https://blog.csdn.net/weixin_53403301/article/details/123252275
资源详情
资源评论
资源推荐
收起资源包目录
Track_Test.rar (9个子文件)
Track_Test
Track_C51_test_1.0.py 2KB
haarcascade_eye.xml 333KB
haarcascade_frontalface_alt_tree.xml 2.56MB
haarcascade_frontalface_default.xml 908KB
GPIO_DJ_test.py 588B
haarcascade_frontalface_alt.xml 661KB
Track_C51_test_1.1.py 2KB
PC_Track_C51_test_1.0.py 2KB
haarcascade_frontalface_alt2.xml 528KB
共 9 条
- 1
网易独家音乐人MikeZhou
- 粉丝: 4w+
- 资源: 74
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
评论0