rqrr 0.10.1

Detect and read QR codes from any image source
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub use self::grid::SkewedGridLocation;
pub use self::match_capstones::find_and_rank_possible_neighbors;

pub mod grid;
pub mod match_capstones;

/// A simple point in (some) space
#[derive(Debug, Clone, Copy, Eq, PartialEq, Default)]
pub struct Point {
    pub x: i32,
    pub y: i32,
}