cap_vfw no more working on win10 / opencv3
since migrating to win10, CAP_VFW seems no more working.
i still get a dialog box, prompting to choose a camera, but
VideoCapture(-1);
or
VideoCapture(0|CAP_VFW);
does not open. can anyone side this / double check ?
(i'm not so much worried about using vfw myself, it's more like 99% of opencv's samples use -1 (which again uses vfw) as default for webcam capture, which would leave noobs on win quite puzzled...)
System win 10 vs2013 debug ocv 3.1
VideoCapture cc(-1); in console windows :
in capture windows a gray frame
Videocapture(0) in console windows
Videocapture(0|CAP_VFW) same as VideoCapture(-1)
thanks !
(still weird, all your output is from cap_dshow.cpp, and not from cap_vfw.cpp. imho, 0 should call dshow, while both -1 and 0|CAP_VFW should call vfw )
may be it is due to this line
i think, that is only used in the c-api part, the c++ graph follows another path
No. with VideoCapture cc(0|CAP_VFW); program reach breakpoint
If i set flag to true in console windows I have got
ahh, right , thanks again.. will have to think it over ...