Raspberry Pi 上的 OpenCV 人脸检测速度很慢

Posted

技术标签:

【中文标题】Raspberry Pi 上的 OpenCV 人脸检测速度很慢【英文标题】:OpenCV face detection is slow on Raspberry Pi 【发布时间】:2012-10-03 08:07:27 【问题描述】:

我正在使用 OpenCV 和 Python 编码测试 Raspberry Pi。视频流效果很好(中等速度),但是当我在流上运行人脸检测时,CPU 被固定并且刷新图像很慢。

这就是我所拥有的。如何优化我的代码?

#!/usr/bin/env python
import sys
import cv2.cv as cv
from optparse import OptionParser
min_size = (20, 20)
image_scale = 2
haar_scale = 1.2
min_neighbors = 2
haar_flags = 0

def detect_and_draw(img, cascade):
    # allocate temporary images
    gray = cv.CreateImage((img.width,img.height), 8, 1)
    small_img = cv.CreateImage((cv.Round(img.width / image_scale),
                               cv.Round (img.height / image_scale)), 8, 1)
                               cv.Round (img.height / image_scale)), 8, 1)

    # convert color input image to grayscale
    cv.CvtColor(img, gray, cv.CV_BGR2GRAY)

    # scale input image for faster processing
    cv.Resize(gray, small_img, cv.CV_INTER_LINEAR)

    cv.EqualizeHist(small_img, small_img)

    if(cascade):
        t = cv.GetTickCount()
        faces = cv.HaarDetectObjects(small_img, cascade, cv.CreateMemStorage(0),
                                     haar_scale, min_neighbors, haar_flags, min_size)
        t = cv.GetTickCount() - t
        print "detection time = %gms" % (t/(cv.GetTickFrequency()*1000.))
        if faces:
            for ((x, y, w, h), n) in faces:
                # the input to cv.HaarDetectObjects was resized, so scale the 
                # bounding box of each face and convert it to two CvPoints
                pt1 = (int(x * image_scale), int(y * image_scale))
                # bounding box of each face and convert it to two CvPoints
                pt1 = (int(x * image_scale), int(y * image_scale))
                pt2 = (int((x + w) * image_scale), int((y + h) * image_scale))
                cv.Rectangle(img, pt1, pt2, cv.RGB(255, 0, 0), 3, 8, 0)

    cv.ShowImage("result", img)

if __name__ == '__main__':

    parser = OptionParser(usage = "usage: %prog [options] [camera_index]")
    parser.add_option("-c", "--cascade", action="store", dest="cascade", type="str", help="Haar cascade file, default %default", default = "/usr/local/share/OpenCV/haarcascades")
    (options, args) = parser.parse_args()

    cascade = cv.Load(options.cascade)
    capture = cv.CreateCameraCapture(0)
    cv.NamedWindow("result", 1)

    if capture:
        frame_copy = None
        while True:
            frame = cv.QueryFrame(capture)
            if not frame:
                cv.WaitKey(0)
                break
            if not frame_copy:
                frame_copy = cv.CreateImage((frame.width,frame.height),
                                            cv.IPL_DEPTH_8U, frame.nChannels)
            if frame.origin == cv.IPL_ORIGIN_TL:
                cv.Copy(frame, frame_copy)
            else:
                cv.Copy(frame, frame_copy)
            else:
                cv.Flip(frame, frame_copy, 0)

            detect_and_draw(frame_copy, cascade)

            if cv.WaitKey(10) != -1:
                break
    else:
        image = cv.LoadImage(input_name, 1)
        detect_and_draw(image, cascade)
        cv.WaitKey(0)

    cv.DestroyWindow("result")

【问题讨论】:

你的parser.add_option 行被截断了,我想。 是的。但这不是我的问题的重点。 我从来没有说过。 :-) 只是给你机会纠正它;我已经关闭了字符串和括号。 【参考方案1】:

我可以建议您使用 LBP 级联而不是 Haar。众所周知,它的检测速度最高可提高 6 倍。

但我不确定它是否可以在旧版 python 界面中访问。来自新包装器的 cv2.CascadeClassifier 类可以检测 LBP 级联。

【讨论】:

谢谢 Andrew,我在 ***.com/questions/8791178/… 上找到了相同的答案,在 docs.opencv.org/doc/tutorials/objdetect/cascade_classifier/… 上找到了一些测试代码。它给我的树莓六足项目带来了更多希望!

以上是关于Raspberry Pi 上的 OpenCV 人脸检测速度很慢的主要内容,如果未能解决你的问题,请参考以下文章

OpenCV VideoCapture 在 Raspberry Pi 2 上总是失败

在 Raspberry Pi 中使用 OpenCV 和套接字通过 TCP 发送视频

OpenCV Raspberry Pi printf()不显示

Opencv:无法打开显示:C++、Raspberry Pi 无头连接

Raspberry pi opencv 链接问题的交叉编译

在 Raspberry PI 上使用 Python 和 OpenCV 进行图像处理 [关闭]