How to properly apply a Camera Profile to a raw image? #1361
Unanswered
simonsanchezart
asked this question in
Q&A
Replies: 2 comments 1 reply
|
Hi @simonsanchezart, Please look here: https://github.com/colour-science/colour-hdri/blob/develop/colour_hdri/examples/examples_adobe_dng_sdk_colour_processing.ipynb, we have an implementation of the DNG SDK that should be ready to use! Cheers, Thomas |
0 replies
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi! I don't know much about colors, cameras or photography,
I need to apply some color profiles to .cr2/.cr3 raw images.
I originally got these profiles as
.dcpfiles, which I converted to.jsonwithdcamprof, this is all I got:{ "UniqueCameraModel": "Canon EOS 250D", "ProfileName": "Canon EOS 250D", "ProfileEmbedPolicy": "Allow copying", "CalibrationIlluminant1": "D55", "ColorMatrix1": [ [ 0.781000, -0.093400, -0.099900 ], [ -0.429400, 1.180100, 0.283500 ], [ -0.119200, 0.253000, 0.567200 ] ] }{ "UniqueCameraModel": "Canon EOS 200D", "ProfileName": "Canon SL2 CPL", "ProfileEmbedPolicy": "Allow copying", "CalibrationIlluminant1": "D65", "ColorMatrix1": [ [ 0.657600, 0.003800, -0.087900 ], [ -0.519800, 1.259700, 0.292800 ], [ -0.156800, 0.285600, 0.569400 ] ] }I'm then trying to use this data to apply it via python, I've tried both profiles, applying the inverse and not inverse Matrix, all the results I got either have a red or a green tint, which I assume is not correct.
Any idea what might be wrong? Thanks
All reactions