私は現在 OpenCV を使用する初心者です。OpenCV ライブラリを使用して、ウェブカメラ (目のおもちゃのウェブカメラ) からビデオをストリーミングしようとしています。VLC を使用してビデオをストリーミングし、正常に動作していたため、Web カメラが正常に動作していることはわかっています。次のプログラムがあります。
int main(){
VideoCapture cap(0); // open the video camera no. 0
if (!cap.isOpened()) // if not success, exit program
{
cout << "Cannot open the video file" << endl;
return -1;
}
double dWidth = cap.get(CV_CAP_PROP_FRAME_WIDTH); //get the width of frames of the video
double dHeight = cap.get(CV_CAP_PROP_FRAME_HEIGHT); //get the height of frames of the video
cout << "Frame size : " << dWidth << " x " << dHeight << endl;
namedWindow("MyVideo",CV_WINDOW_AUTOSIZE); //create a window called "MyVideo"
while (1)
{
Mat frame;
bool bSuccess = cap.read(frame); // read a new frame from video
if (!bSuccess) //if not success, break loop
{
cout << "Cannot read a frame from video file" << endl;
break;
}
imshow("MyVideo", frame); //show the frame in "MyVideo" window
if (waitKey(30) == 27) //wait for 'esc' key press for 30ms. If 'esc' key is pressed, break loop
{
cout << "esc key is pressed by user" << endl;
break;
}
}
return 0;
}
これを実行すると、次の出力が得られます。
HIGHGUI ERROR: V4L/V4L2: VIDIOC_CROPCAP
Frame size: 640x480
select timeout
VideoCapture を使用してデバイスが接続されているときに、エラーがスローされると確信しています。ネットでよく検索しましたが、この特定のエラーの説明が見つかりませんでした。
どんな助けでも大歓迎です。