User Tools

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
isp:automatic_white_balance [2019/05/09 00:41] – [Calculate color properties] Igor Yefmovisp:automatic_white_balance [2019/05/09 00:45] – [Figure out the adjustment] Igor Yefmov
Line 50: Line 50:
   - Calculate the "average" \(R\), \(G\), and \(B\) values from \(U\) and \(V\).   - Calculate the "average" \(R\), \(G\), and \(B\) values from \(U\) and \(V\).
     - Use the \(Y\) from [[#Collect statistical data set|previous step]] (if it was collected) or just go with the value of \(100\) which is hopefully a good representation of a well-adjusted overall brightness     - Use the \(Y\) from [[#Collect statistical data set|previous step]] (if it was collected) or just go with the value of \(100\) which is hopefully a good representation of a well-adjusted overall brightness
-  - Calculate the two ratios that represent how far off the ''Red'' and ''Blue'' colors are from the ''Green''((we use a fixed value of ''Green'' and never adjust it for color normalization)). Those ratios are \(\frac{R}{G}\) and \(\frac{B}{G}\)+  - Calculate the two ratios that represent how far off the ''Red'' and ''Blue'' colors are from the ''Green''((we use a fixed value of ''Green'' and never adjust it for color normalization)). Those ratios are \(^R/_G\) and \(^B/_G\)
  
 ==== Figure out the adjustment ==== ==== Figure out the adjustment ====
Line 56: Line 56:
 Now that we have all the information we need to make a decision let's make one! Now that we have all the information we need to make a decision let's make one!
  
-  - If the **absolute** value of average ''U'' is above some arbitrary threshold (we use ''0.1'') then we need to adjust the ''Blue'' channel. In our case we just change the sensor's blue channel gain by multiplying it by the ''B/G'' ratio+  - If the **absolute** value of average \(U\) is above some arbitrary threshold (we use \(0.1\)) then we need to adjust the ''Blue'' channel. In our case we just change the sensor's blue channel gain by multiplying it by the \(^B/_G\) ratio
     - Be careful not to overflow beyond the sensor gain's cap     - Be careful not to overflow beyond the sensor gain's cap
     - If the gain is already at 0 and needs to be increased - make sure you use addition, as multiplication won't help you((or just make sure you never adjust the color channel's gain below, say, ''10'')) ;-)     - If the gain is already at 0 and needs to be increased - make sure you use addition, as multiplication won't help you((or just make sure you never adjust the color channel's gain below, say, ''10'')) ;-)
-  - Same for the ''Red'' channel, only we use the ''V'' and ''R/G'' values+  - Same for the ''Red'' channel, only we use the \(V\) and \(^R/_G\) values
  
-The ''Blue'' channel gets a bit over-saturated on the sensor we use so a tiny adjustment is introduced: the ''B/G'' ratio is offset by ''2%'' right before it is applied to the new gain's value.+The ''Blue'' channel gets a bit over-saturated on the sensor we use so a tiny adjustment is introduced: the \(^B/_G\) ratio is offset by \(2%%\) right before it is applied to the new gain's value.
  
 ===== Sample implementation in C++ ===== ===== Sample implementation in C++ =====
  
 [[Sample AWB implementation in C++]] shows one possible implementation of the approach described above. It does use (without much explanation) some of the external structures, but those should not be hard to deduce from their usage [[Sample AWB implementation in C++]] shows one possible implementation of the approach described above. It does use (without much explanation) some of the external structures, but those should not be hard to deduce from their usage

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also, you acknowledge that you have read and understand our Privacy Policy. If you do not agree, please leave the website.

More information