树莓派opencv人脸追踪
时间: 2023-08-02 15:05:55 浏览: 119
下面是一个使用OpenCV在树莓派上进行人脸追踪的示例代码:
```python
import cv2
# Load the Haar Cascade classifier for face detection
face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
# Initialize the video capture object
cap = cv2.VideoCapture(0)
# Set the frame width and height
cap.set(cv2.CAP_PROP_FRAME_WIDTH, 640)
cap.set(cv2.CAP_PROP_FRAME_HEIGHT, 480)
while True:
# Read a frame from the video stream
ret, frame = cap.read()
# Convert the frame to grayscale
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# Detect faces in the grayscale frame
faces = face_cascade.detectMultiScale(gray, scaleFactor=1.3, minNeighbors=5)
# Draw bounding boxes around the detected faces
for (x, y, w, h) in faces:
cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)
# Display the resulting frame
cv2.imshow('Face Tracking', frame)
# Wait for a key press and check if it is the 'q' key to exit
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# Release the video capture object and close all windows
cap.release()
cv2.destroyAllWindows()
```
在上述代码中,我们首先加载了OpenCV的人脸检测分类器,然后初始化了一个视频捕捉对象。在每个循环迭代中,我们读取一帧视频流,并将其转换为灰度图像。然后,我们使用分类器检测灰度图像中的所有人脸,并在每个检测到的人脸周围绘制矩形边界框。最后,我们显示带有矩形边界框的帧,并等待用户按下“q”键退出。
请注意,上述代码只是一个简单的示例,可能需要根据您的具体需求进行修改和调整。例如,您可能需要调整分类器的参数以提高检测精度,或者使用多个分类器来检测不同角度和大小的人脸。
阅读全文