-2
私はOpenCV-3.1とVS-15を持っています。出力ウィンドウには、灰色の空白の表示が表示されます。どうすれば解決できますか?Visual Studioを使用したウェブカメラ2015
#include <opencv2\highgui\highgui.hpp>
int main() {
cvNamedWindow("Webcam Stream", CV_WINDOW_AUTOSIZE);
CvCapture* capture = cvCreateCameraCapture(0);
IplImage* frame;
while (1) {
frame = cvQueryFrame(capture);
if (!frame) break;
cvShowImage("Streaming", frame);
char c = cvWaitKey(33);
if (c == 27) break;
}
cvReleaseCapture(&capture);
cvDestroyWindow("Example");
return 0;
}