1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Initial Windows RT support commit.

GPU module turned off;
TIFF support turned off;
Windows Managment and Video IO (VFW) turned off.
This commit is contained in:
Alexander Smorkalov
2013-03-13 09:02:15 -07:00
parent 13f402a554
commit 06aff4e7b0
7 changed files with 38 additions and 27 deletions
+4 -3
View File
@@ -197,9 +197,10 @@ CV_IMPL CvCapture * cvCreateCameraCapture (int index)
{
#ifdef HAVE_VIDEOINPUT
case CV_CAP_DSHOW:
capture = cvCreateCameraCapture_DShow (index);
if (capture)
return capture;
// capture = cvCreateCameraCapture_DShow (index);
// if (capture)
// return capture;
return NULL;
break;
#endif