VideoCapture for video files implemented.

Set and Get methods are not implemented;
Camera based video capture is broken due to modifications.
This commit is contained in:
Alexander Smorkalov
2013-05-14 05:17:34 -07:00
parent 22b0cfbaa2
commit 9fb762ccec
4 changed files with 521 additions and 25 deletions

View File

@@ -209,11 +209,7 @@ CvCapture* cvCreateFileCapture_FFMPEG_proxy(const char * filename)
if( result->open( filename ))
return result;
delete result;
#ifdef HAVE_VFW
return cvCreateFileCapture_VFW(filename);
#else
return 0;
#endif
}
class CvVideoWriter_FFMPEG_proxy :