pub trait FrameSource {
// Required method
fn next_frame(&mut self) -> Option<Frame>;
}Expand description
Pulls frames from some source (capture camera, file, test generator).
pub trait FrameSource {
// Required method
fn next_frame(&mut self) -> Option<Frame>;
}Pulls frames from some source (capture camera, file, test generator).