Crate amazon_captcha_rs
source ·Expand description
Amazon Captcha Solver
This library has been highly inspired by:
- a-maliarov/amazoncaptcha (Python)
- gopkg-dev/amazoncaptcha (Go)
Some methods are re-used from these libraries, the dataset is also re-used from gopkg but converted to uncompressed bincode format which makes it much faster to load.
Example
use amazon_captcha_rs::new_solver;
let image = image::open("examples/dataset/aatmag.jpg").unwrap();
let solver = new_solver();
let response = solver.resolve_image(&image).unwrap();
assert_eq!(response, "aatmag");
Structs
- Solver implementation
Functions
- Create a new solver instance