基于Qt的Camera模块实现摄像头的热插拔。当只有一个摄像头时,被拔开后再插入能自动恢复相机状态。当有多个摄像头时,拔开当前摄像头会自动设置另外一个摄像头。
基于定时查询的方法
定时查询设备列表变化;
1
2connect(&m_checkDeviceListTimer, SIGNAL(timeout()),
this, SLOT(checkDeviceList()));如果当前设备列表对比上一次缓存的设备列表有变化则发送设备列表变化事件(信号)
deviceListChanged()
;1
2
3
4
5
6
7
8
9void QtCamera::checkDeviceList()
{
QList<QCameraInfo> curCameraInfoList = QCameraInfo::availableCameras();
if ( m_preCameraInfoList.count() != curCameraInfoList.count() ) {
emit deviceListChanged();
}
m_preCameraInfoList = curCameraInfoList;
}
单设备重连机制
先前
autoRestore()
槽函数绑定设备列表变化信号。1
2connect(this, SIGNAL(deviceListChanged()),
this, SLOT(autoRestore()));触发自动重连机制。
当设备存在则会重新启动start()
;
当设备不存在则关闭该设备。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18void QtCamera::autoRestore()
{
if (! m_isStarted) {
return;
}
if (deviceExist(m_curCameraInfo)) {
if (m_camera->status() != QCamera::ActiveStatus) {
QTimer::singleShot(500, m_camera, SLOT(start()));
}
}
else {
if (m_camera->status() == QCamera::ActiveStatus) {
m_camera->stop();
m_camera->unload();
}
}
}
多设备自动切换
autoSelectDevice()
槽函数连接设备列表变化信号。1
2connect(this, SIGNAL(deviceListChanged()),
this, SLOT(autoSelectDevice()));当设备已存在再次刷新当前的设备;
- 当设备被断开,自动切换到第一个设备。
1
2
3
4
5
6
7
8
9
10
11
12
13void QtCamera::autoSelectDevice()
{
QList<QCameraInfo> curCameraInfoList = QCameraInfo::availableCameras();
if (curCameraInfoList.isEmpty())
return;
if (curCameraInfoList.contains(m_curCameraInfo)) {
selectDevice(m_curCameraInfo);
return;
}
selectDevice(curCameraInfoList.first());
}
关于更多
源码地址:
1
https://github.com/aeagean/QtCamera
文章首发公众号:Qt君
- 后续更新摄像头参数选择算法(自动匹配用户设置摄像头参数,分辨率,帧率,格式)。