-
Dear Thomas, In the example tutorial, you showcase the color calibration algorithm for a couple of images. I was wondering, did you use a special illuminant (e.g., D65) when taking these pictures? If not, how come that the calibration works so well given that the color calibration methods are sensitive to the illumination conditions, as you very eloquently argue in one of your posts? My question is prompted by some experiments I did, where I took a picture of the color checker outdoors during midday, but in somewhat cloudly conditions Do you think this is due to the illumination? Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Hi @danoneata, So I spent a bit of time looking at your image, something that is throwing off the computations is that you have an alpha channel so please make sure that you are taking only the RGB channels: Cheers, Thomas |
Beta Was this translation helpful? Give feedback.
Hi @danoneata,
So I spent a bit of time looking at your image, something that is throwing off the computations is that you have an alpha channel so please make sure that you are taking only the RGB channels:
colour.read_image(path)[..., 0:3]
. The other issue is that it seems like that the image has some kind of contrast curve applied. How was it processed?Cheers,
Thomas