我正在尝试在我的 Macbook Pro(10.8.5,retina 型号)上运行 openCV,并且我想使用默认的 iSight 摄像头进行输入,因为我不想随身携带或购买 USB 摄像头。不需要。
我正在使用 OpenCV 用户文档中的示例程序:
#include "cv.h"
#include "highgui.h"
using namespace cv;
int main(int, char**)
{
VideoCapture cap(0);
if(!cap.isOpened()) return -1;
Mat frame, edges;
namedWindow("edges",1);
for(;;)
{
cap >> frame;
cvtColor(frame, edges, CV_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;
}
当我运行这个程序时,程序失败了一个断言:
OpenCV Error: Assertion failed (scn == 3 || scn == 4) in cvtColor, file /Users/dadair/opencv/src/modules/imgproc/src/color.cpp, line 3402
libc++abi.dylib: terminate called throwing an exception
谁能解释为什么这会失败,以及我能做些什么来解决这个问题?我正在运行 OpenCV 2.4.6。
谢谢!