//! fpo-rust – Rust inference port of [fast-plate-ocr].
//!
//! [fast-plate-ocr]: https://github.com/ankandrew/fast-plate-ocr
//!
//! # Quick start
//!
//! ```no_run
//! use fpo_rust::{LicensePlateRecognizer, PlateInput, OcrModel};
//!
//! let rec = LicensePlateRecognizer::from_hub(OcrModel::CctSV2Global, false).unwrap();
//! let pred = rec.run_one(PlateInput::from("plate.png"), false, true).unwrap();
//! println!("{}", pred.plate);
//! ```
pub use PlateConfig;
pub use OcrModel;
pub use PlatePrediction;
pub use ;