【发布时间】:2016-02-04 11:19:53
【问题描述】:
我正在尝试使用计算机上的网络摄像头实时捕捉图像。 我正在使用虚拟机运行 Ubuntu,并且我知道我需要设置 USB 设置才能使用网络摄像头,但我还需要安装网络摄像头驱动程序吗?如果是的话,我该怎么做!
我安装了 虚拟机 5.0.6 ubuntu 14.04.3
我正在运行 Windows 10 机器
这是我正在运行的代码,我收到“错误:无法访问相机!” ..
你能帮忙吗!
// Get access to the webcam.
void initWebcam(VideoCapture &videoCapture, int cameraNumber)
{
// Get access to the default camera.
try {
videoCapture.open(cameraNumber);
} catch (Exception &e) {}
if ( !videoCapture.isOpened() ) {
cerr << "ERROR: Could not access the camera!" << endl;
exit(1);
}
cout << "Loaded camera " << cameraNumber << "." << endl;
}
int main(int argc, char** argv)
{
const int DESIRED_CAMERA_WIDTH = 640;
const int DESIRED_CAMERA_HEIGHT = 480;
int cameraNumber = 0;
// Get access to the camera.
VideoCapture camera;
initWebcam(camera, cameraNumber);
camera.set(CV_CAP_PROP_FRAME_WIDTH, DESIRED_CAMERA_WIDTH);
camera.set(CV_CAP_PROP_FRAME_HEIGHT, DESIRED_CAMERA_HEIGHT);
while (true) {
// Grab the next camera frame. Note that you can't modify camera frames.
Mat cameraFrame;
camera >> cameraFrame;
if( cameraFrame.empty() ) {
cerr << "ERROR: Couldn't grab the next camera frame." << endl;
exit(1);
}
Mat displayedFrame = Mat(cameraFrame.size(), CV_8UC3);
// DO SOME PROCESSING
return 0;
}
【问题讨论】:
-
这个应该回答。我也有同样的问题。
标签: c++ opencv ubuntu virtual-machine video-capture