gpt4 book ai didi

c++ - 流网络摄像头速度慢 "detectMultiScale"

转载 作者:行者123 更新时间:2023-11-28 02:11:46 25 4
gpt4 key购买 nike

我是 OpenCV 的新手。我正在做一个示例人脸检测器应用程序控制台。我正在使用 haarcascade 从网络摄像头检测人脸。

我做了下一个代码:

int main(int, char**)
{
CascadeClassifier face_cascade;
face_cascade.load("haarcascade_frontalface_alt2.xml");
vector<Rect> faces;
Mat frame_gray;

const double scale_factor = 1.1;
const int min_neighbours = 2;
const int flags = 0 | CV_HAAR_SCALE_IMAGE;

VideoCapture cap(0); // open the default camera
if (!cap.isOpened()) // check if we succeeded
return -1;

Mat frame;
for (;;)
{
cvtColor(frame, frame_gray, CV_BGR2GRAY);
equalizeHist(frame_gray, frame_gray);

face_cascade.detectMultiScale(frame_gray, faces, scale_factor, min_neighbours, flags, Size(30, 30));

if (faces.size() == 0)
{
cout << "No face detected" << endl;
}
else
{
for (unsigned int i = 0; i<faces.size(); i++)
{
Point pt1(faces[i].x, faces[i].y);
Point pt2(faces[i].x + faces[i].width, faces[i].y + faces[i].height);
rectangle(frame, pt1, pt2, Scalar(0, 255, 0), 1.5, 8, 0);
}
}
if (waitKey(30) >= 0) break;
}
return 0;

我测试了网络摄像头的速度很慢。我想这可能是图像的分辨率 (640x480)。我想知道是否有任何方法可以保持分辨率并提高每帧之间的速度来进行检测。

谢谢!

最佳答案

您可以:

  1. 将最小面部尺寸从 Size(30, 30) 增加到 Size(50, 50)(性能提高 2-3 倍)。
  2. 将 scale_factor 的值从 1.1 更改为 1.2; (它提高了 2 倍的性能)。
  3. 使用 LBP 检测器代替 Haar 检测器(快 2-3 倍)。
  4. 检查编译器选项(可能是您使用 Debug模式)。

关于c++ - 流网络摄像头速度慢 "detectMultiScale",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35428294/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com