Auto white balance for camera

I am developing a camera sample and I can directly control the image sensor. The sensors give out a Bayer image, and I need to show the images in real time.

I looked at the desizer codes, as well as the white balance. Is there a library in C / C ++ that can help me in this process?

Since I need to have a live view, I need to do this very quickly, and therefore I need algorithms that are very fast.

For example, I can change the RGB gain on the sensor and, therefore, I need an algorithm that operates at this level, instead of acting on the generated image.

Is there a library that helps to save images in raw format?

+5
source share
1 answer

simplecv has a white balance control function:

simplecv project website

+1
source

All Articles