You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use bardecoder;use bardecoder::prepare::BlockedMean;use image;use std::env;fnmain(){let img = image::open(env::args().last().unwrap()).unwrap();// Use default decoder builderletmut db = bardecoder::default_builder();// Use some different arguments in one of the default components//db.prepare(Box::new(BlockedMean::new(7, 9)));// Build the actual decoderlet decoder = db.build();let results = decoder.decode(&img);for result in results {println!("{}", result.unwrap());}}
Add a CLI:
The text was updated successfully, but these errors were encountered: