|
- Method resolution order:
- VideoFileFrameGenerator
- telemetry.internal.image_processing.frame_generator.FrameGenerator
- __builtin__.object
Methods defined here:
- __init__(self, video_filename, start_frame_index=0)
- Initializes the VideoFileFrameGenerator object.
Args:
video_filename: str, The path to the video file.
start_frame_index: int, The number of frames to skip at the start of the
file.
Raises:
FrameReadError: A read error occurred during initialization.
Data descriptors defined here:
- CurrentFrameNumber
- CurrentTimestamp
- Dimensions
Data and other attributes defined here:
- __abstractmethods__ = frozenset([])
Data descriptors inherited from telemetry.internal.image_processing.frame_generator.FrameGenerator:
- Generator
- Returns:
A reference to the created generator.
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
Data and other attributes inherited from telemetry.internal.image_processing.frame_generator.FrameGenerator:
- __metaclass__ = <class 'abc.ABCMeta'>
- Metaclass for defining Abstract Base Classes (ABCs).
Use this metaclass to create an ABC. An ABC can be subclassed
directly, and then acts as a mix-in class. You can also register
unrelated concrete classes (even built-in classes) and unrelated
ABCs as 'virtual subclasses' -- these and their descendants will
be considered subclasses of the registering ABC by the built-in
issubclass() function, but the registering ABC won't show up in
their MRO (Method Resolution Order) nor will method
implementations defined by the registering ABC be callable (not
even via super()).
|