Giter Site home page Giter Site logo

more examples about rawloader HOT 9 OPEN

pedrocr avatar pedrocr commented on July 20, 2024
more examples

from rawloader.

Comments (9)

pedrocr avatar pedrocr commented on July 20, 2024 2

See imagepipe and chimper for practical uses of the library:

https://github.com/pedrocr/imagepipe/
https://github.com/pedrocr/chimper

from rawloader.

pedrocr avatar pedrocr commented on July 20, 2024 2

More than welcome. If you want to discuss anything live I have IRC always running on #chimper irc.freenode.net. I may not always be available but I'll eventually reply, and check it often.

from rawloader.

aaronleopold avatar aaronleopold commented on July 20, 2024

Does this library have any support for conversion operations? Such as CR2 -> JPG?

from rawloader.

pedrocr avatar pedrocr commented on July 20, 2024

@aaronleopold rawloader only deals with interpreting and decoding the raw data itself, it doesn't process it in any way. imagepipe is what you want if you want to create an RGB image as that requires a raw processing pipeline to convert the raw data into RGB output with proper demosaic, white balance, levels, etc. You can then write that image out to a jpeg. The converter binary in imagepipe includes a full JPG output from any raw file that you can use as a guide:

https://github.com/pedrocr/imagepipe/blob/d95a17f7a55c7d6fb73d8006791a9436e80de10c/src/bin/converter.rs

This just uses the default values for the operations. imagepipe operations have options that can be set to use different whitebalance, color conversion, crop, rotate, etc.

Documenting imagepipe a bit more would be a good first issue. I'll put that in that project.

from rawloader.

aaronleopold avatar aaronleopold commented on July 20, 2024

@pedrocr Thank you so much for the detailed reply!! I'll look at the linked file for reference!

from rawloader.

qarmin avatar qarmin commented on July 20, 2024

It is possible to use this library to extend extension number supported byimage-rs?
I can't find anywhere example how to decode image in this library and results pass to image-rs.

from rawloader.

pedrocr avatar pedrocr commented on July 20, 2024

@qarmin see my comment above with the link to imagepipe. That converter example uses the image crate and so does chimper.

from rawloader.

qarmin avatar qarmin commented on July 20, 2024

Well, if I read this correctly, then decoded image from rawloader is not used in any other place, so still I don't know how to use this
https://github.com/pedrocr/imagepipe/blob/d95a17f7a55c7d6fb73d8006791a9436e80de10c/src/bin/converter.rs#L36-L39

                if file_entry.path.to_string_lossy().ends_with(".cr2"){
                    let raw_image = match rawloader::decode_file(&file_entry.path){
                        Ok(t) => t,
                        Err(e) => {
                            println!("Failed to process image {:?}, reason {}", file_entry.path,e);
                            return Some(Some((file_entry,Vec::new())));
                        }
                    };


                    raw_image.
                    match raw_image.data{
                        RawImageData::Integer(vec_16) => {
                            vec_16.u
                        }
                        RawImageData::Float(vec_32) => {

                        }
                    }
                    // image = image::load_from_memory(raw_image.data);
}

For now I wrote this code, but I don't know how to convert vec_16 or vec_32 to &[u8] needed by load_from_memory and I'm not sure if it will work.

from rawloader.

pedrocr avatar pedrocr commented on July 20, 2024

That part is only used to print out some metadata. The actual decode and conversion is just this call:

https://github.com/pedrocr/imagepipe/blob/d95a17f7a55c7d6fb73d8006791a9436e80de10c/src/bin/converter.rs#L53-L56

It gives you an 8bit output directly no matter what the internal pipeline needed to do to achieve that.

That can then be used with the image crate:

https://github.com/pedrocr/imagepipe/blob/d95a17f7a55c7d6fb73d8006791a9436e80de10c/src/bin/converter.rs#L67-L71

That's the simplest API. If you want to change settings then you need to actually setup a pipeline:

https://github.com/pedrocr/imagepipe/blob/12269f04ac2fa0d165fc860d853ca828a8b8de3e/src/lib.rs#L22-L25

and then you can alter the conversion settings of the pipeline, by writing to pipeline.ops.*. The pipeline also has a 16bit output option which is useful if you want to use an 16bit format with the image crate.

from rawloader.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.