Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

this should be possible, VideoCapture has an image sequence reader, which can be constructed with a printf like string.

assuming, you got numbered image files like:

/some/folder
+-  img00001.png
+-  img00002.png
+-  img00003.png

you should be able to call it like:

Ptr<VideoFileSource> source = makePtr<VideoFileSource>("/some/folder/img%5d.png");