usevisioncortex::{ColorImage, PerspectiveTransform};/// Given a correct perspective transform, scan the image to read out a series of symbols
pubtraitReader{typeSymbol;fnread(&self, frame: ColorImage, transform: PerspectiveTransform)->Result<Vec<Self::Symbol>, &'staticstr>;}