我在使用opencv 2.4.3訪問攝像頭時遇到了問題。Opencv無法訪問我的攝像頭
我幾乎到處都是Google搜索,但我無法解決我的問題。
我的系統:
惠普ProBook 4530s - 惠普固定的高清攝像頭
的Ubuntu 12.10
的OpenCV 2.4.3
如果我想捕捉我的內置攝像頭,收到錯誤:capture is NULL
我正在使用http://opencv.willowgarage.com/wiki/CameraCapture示例代碼。
示例代碼:
#include "cv.h"
#include "highgui.h"
#include <stdio.h>
// A Simple Camera Capture Framework
int main() {
CvCapture* capture = cvCaptureFromCAM(CV_CAP_ANY);
if (!capture) {
fprintf(stderr, "ERROR: capture is NULL \n");
getchar();
return -1;
}
// Create a window in which the captured images will be presented
cvNamedWindow("mywindow", CV_WINDOW_AUTOSIZE);
// Show the image captured from the camera in the window and repeat
while (1) {
// Get one frame
IplImage* frame = cvQueryFrame(capture);
if (!frame) {
fprintf(stderr, "ERROR: frame is null...\n");
getchar();
break;
}
cvShowImage("mywindow", frame);
// Do not release the frame!
//If ESC key pressed, Key=0x10001B under OpenCV 0.9.7(linux version),
//remove higher bits using AND operator
if ((cvWaitKey(10) & 255) == 27) break;
}
// Release the capture device housekeeping
cvReleaseCapture(&capture);
cvDestroyWindow("mywindow");
return 0;
}
我還的xawtv -hwscan使用輸入端子與嘗試。我得到這樣的輸出:
looking for available devices
port 129-144
type : Xvideo, image scaler
name : Intel(R) Textured Video`
/dev/video0: OK
[ -device /dev/video0 ]
type : libv4l
name : HP HD Webcam [Fixed]
flags: capture
那麼我就可以存取權限我的攝像頭輸入的xawtv video0的。我想我的攝像頭沒有問題。 我有麻煩與opencv。
如果您使用C++給這個示例代碼一個嘗試:http://docs.opencv.org/modules/highgui/doc/reading_and_writing_images_and_video.html#videocapture – Niko
我嘗試您的代碼是在http:// docs。 opencv.org/modules/highgui/doc/reading_and_writing_images_and_video.html#videocapture 它不工作 – burakim
嘗試在這裏使用不同的數字:'VideoCapture cap(0);',例如1和2.如果這沒有幫助,問題不在OpenCV中。 – Niko