我已经在我的 Raspberry Pi 上成功安装了 OpenCV,并且一直在玩一些简单的网络摄像头流、实时精明边缘检测等等,所有这些都使用基本的 C 和 C++ 代码。
但是,我正在使用的两个网络摄像头遇到问题。第一个,我坐过的一个非常基本、便宜的罗技,工作正常,但图像质量还有很多不足之处。但是当我切换到我的 Logitech 510c 相机时,图像要好得多,但 Pi 会冻结。
相反,流媒体程序继续运行良好,但我无法退出程序 - Raspberry Pi 停止响应键盘和鼠标,退出的唯一方法是拔下 Raspberry Pi。这是一些代码的示例:
#include <cv.h>
#include <highgui.h>
#include <stdio.h>
int main(){
int c, i, j;
//Capture frame from camera
CvCapture* capture = cvCaptureFromCAM(CV_CAP_ANY);
if(!capture){
fprintf(stderr, "Error: capture is NULL \n");
getchar();
return -1;
}
//Set resolution of capture
cvSetCaptureProperty(capture, CV_CAP_PROP_FRAME_WIDTH, 256);
cvSetCaptureProperty(capture, CV_CAP_PROP_FRAME_HEIGHT, 192);
//Create window for display
cvNamedWindow("canny");
while(true){
//Find/mark edges using canny
IplImage* frame = cvQueryFrame(capture);
IplImage* grey = cvCreateImage(cvGetSize(frame), 8, 1);
cvCvtColor(frame, grey, CV_RGB2GRAY);
IplImage* frame2 = cvCreateImage(cvSize(grey->width+6, grey->height+6), grey->depth, grey->nChannels);
CvPoint offset = cvPoint(3,3);
cvCopyMakeBorder(grey, frame2, offset, IPL_BORDER_REPLICATE, cvScalarAll(0));
IplImage* edges = cvCreateImage(cvGetSize(frame2), IPL_DEPTH_8U, frame2->nChannels);
cvCanny(frame2, edges, 4900, 39200, 7);
cvShowImage("canny", edges);
//Wait for a keypress
int c = cvWaitKey(10);
if (c!=-1)
break;
} //End while
cvReleaseCapture (&capture);
cvDestroyWindow("canny");
return 0;
} //End main
我的代码有问题吗?我需要使用不同的网络摄像头吗?我已经超频了树莓派;它不能用质量更好的相机处理流吗?