Opencv imshow显示灰色图像。
#include "stdafx.h"
#include <opencv2\opencv.hpp>
using namespace cv;
using namespace std;
int main()
{
VideoCapture cap;
Mat frame;
cap.open(0);
while (true)
{
cap >> frame;
imshow("test", frame);
waitKey(30);
}
return 0;
}
我最近升级到Windows内幕预览版14316,我觉得它停止了工作。
我检查了相机是否在skype中工作,确实如此。我也尝试了另一台计算机上的代码,但它确实有效。
有什么想法吗?