Module implements utilities for video input.
Input video streaming is performed with InputStream utility by following example:
InputStream stream = new InputStream; stream.open(pathToVideoFile, InputStreamType.FILE); if (!stream.isOpen) { exit(-1); } Image frame; while(stream.readFrame(frame)) { // do something with frame... }
Video streaming utility.
Exception thrown when seeking a frame fails.
Exception thrown when seeking a time fails.
Input streaming type - file or webcam (live)
See Source File
Relja Ljubobratovic
Copyright Relja Ljubobratovic 2016.
$(LINK3 http://www.boost.org/LICENSE_1_0.txt, Boost Software License - Version 1.0).
Module implements utilities for video input.
Input video streaming is performed with InputStream utility by following example: