Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Auto white balancing for camera

I am developing a sample camera and I am able to control image sensor directly. The sensors gives out Bayer image and I need to do show images as live view.

I looked at debayering codes and also white balancing. Is there any library in C/C++ that can help me in this process?

Since I need to have live view, I need to do these things very fast and hence I need algorithms that are very fast.

For example, I can change the RGB gains on sensor and hence I need an algorithm that act at that level, instead of acting on generated image.

Is there any library that help to save images in raw format?

like image 819
mans Avatar asked Nov 12 '22 07:11

mans


1 Answers

simplecv has a function for white balance control:

simplecv project web site

like image 185
simurg Avatar answered Nov 15 '22 06:11

simurg