Class to wrap a VideoCapture with OpenCV.
This class is embedding a VideoCapture() object and define some getters and setters to manage such video easily. It was tested only to open/read videos from files, not to capture a video stream from a camera, etc.
Example
Example
>>> # Create the instance and open the video
>>> vid = sppasVideoReader()
>>> vid.open("my_video_file.xxx")
Example
>>> # Read one frame from the current position
>>> image = vid.read()
Example
>>> # Set the current position
>>> vid.seek(frame_pos)
>>> # Get the current position
>>> vid.tell()
Example
>>> # Release the video stream
>>> vid.close()