bardecoder icon indicating copy to clipboard operation
bardecoder copied to clipboard

Mode 0111 not yet implemented

Open RNGKing opened this issue 2 years ago • 1 comments

As per the title

Can't decode the following image.


use bardecoder;
use bardecoder::prepare::BlockedMean;
fn main() {
    let img = image::open("E:\\rust_demo_projects\\rust_python_example\\back_end\\frame.png").unwrap();

    let mut 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 decoder
    let decoder = db.build();

    let results = decoder.decode(&img);
    for result in results {
        println!("{}", result.unwrap());
    }
}

frame_new

RNGKing avatar Nov 15 '23 02:11 RNGKing

I am not the only one great. Same issue here, @piderman314 will there be another release ever?

Sparkenstein avatar Jan 04 '25 07:01 Sparkenstein