gpt4 book ai didi

c++ - 检测未插入的捕获设备 (OpenCV)

转载 作者:可可西里 更新时间:2023-11-01 18:25:59 26 4
gpt4 key购买 nike

我正在尝试检测我的摄像头是否被拔掉了。我的假设是对 cvQueryFrame 的调用将返回 NULL,但它会继续返回最后一个有效帧。

有谁知道如何使用 OpenCV 检测相机插拔事件?这看起来很简陋……我错过了什么?

最佳答案

不幸的是,没有 API 函数可以做到这一点。

但是,我的建议是您创建另一个线程,它只调用 cvCaptureFromCAM() 并检查它的结果(在循环内)。如果相机断开连接,则它应该返回 NULL。

我将粘贴一些代码来说明我的想法:

// This code should be executed on another thread!
while (1)
{
CvCapture* capture = NULL;
capture = cvCaptureFromCAM(-1); // or whatever parameter you are already using
if (!capture)
{
std::cout << "!!! Camera got disconnected !!!!" << std::endl;
break;
}

// I'm not sure if releasing it will have any affect on the other thread
cvReleaseCapture(&capture);
}

关于c++ - 检测未插入的捕获设备 (OpenCV),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4028463/

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