symcode 0.1.0

Symbolic Barcode - Programming Library
Documentation
1
2
3
4
5
6
7
8
9
use visioncortex::{ColorImage, PerspectiveTransform};

/// Given a correct perspective transform, scan the image to read out a series of symbols
pub trait Reader {

	type Symbol;

    fn read(&self, frame: ColorImage, transform: PerspectiveTransform) -> Result<Vec<Self::Symbol>, &'static str>;
}