Reputation: 5900
I've got a Camera object with white balance setted to auto. Is it possible to find real white balance parameter which is applied at the moment when I'm taking a picture?
Upvotes: 3
Views: 1563
Reputation: 477
There doesn't seem to be a way to do this.
You may be able to find what you're looking for by inspecting the Exif metadata for the final JPEG (after the picture has been taken) to find the ColorSpace tag.
Based on the color space specification, you can find out the illuminant white point: http://en.wikipedia.org/wiki/RGB_color_space#Specifications
Upvotes: 1