Open ovisan opened 4 years ago
See imagepipe and chimper for practical uses of the library:
https://github.com/pedrocr/imagepipe/ https://github.com/pedrocr/chimper
Does this library have any support for conversion operations? Such as CR2 -> JPG?
@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:
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.
@pedrocr Thank you so much for the detailed reply!! I'll look at the linked file for reference!
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.
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.
@qarmin see my comment above with the link to imagepipe. That converter example uses the image crate and so does chimper.
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.
That part is only used to print out some metadata. The actual decode and conversion is just this call:
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:
That's the simplest API. If you want to change settings then you need to actually setup a pipeline:
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.
Hi,
So glad you made this library, thank you! Can you please add more examples, besides ppm? Maybe also a link to a good learning resource.