无法使用ubuntu opencv c ++打开相机

时间:2018-02-10 11:20:06

标签: c++ opencv ubuntu

我遇到问题我无法打开电脑的相机0

这是我使用的代码:

#include "opencv2/opencv.hpp"
#include <iostream>

using namespace cv;
using namespace std;

int main(int, char**)
{
    VideoCapture cap(0); // open the default camera
    if(!cap.isOpened()) { // check if we succeeded
        cout << "cannot open camera "<< endl;
        return -1;
    }
    Mat edges;
    namedWindow("edges",1);

    for(;;){
        Mat frame;
        cap >> frame; // get a new frame from camera
        cvtColor(frame, edges, COLOR_BGR2GRAY);
        GaussianBlur(edges, edges, Size(7,7), 1.5, 1.5);
        Canny(edges, edges, 0, 30, 3);
        imshow("edges", edges);
        if(waitKey(30) >= 0) break;
    }
    return 0;
}

正在显示

  

无法打开相机

因为isOpened返回false

1 个答案:

答案 0 :(得分:1)

请确保正确检测到相机。您可以执行以下操作:

    $ls /dev/video*

我还发现其他程序会为您提供更详细的输出,例如ffmpeg与V4L 执行例如

     ffmpeg -f v4l2 -i /dev/video0 -vf scale=640:480 -r  20 -t 00:00:10 output.mp4

它会告诉您来源是否繁忙或者为什么无法打开相机,而OpenCV只返回false。