50 of 95
Reference Manual ATOM one SSM500
ID
Illumination
Color Temperature
0
Tungsten 2800
2800K
1
Tungsten 3200
3200K
2
Fluorescent TL84
4200K
3
Flash
5000K
4
Daylight D55
5500K
5
Daylight D60
6000K
6
Daylight D65
6500K
7
Shady
7500K
8
Cloudy
8500K
9
Blue Sky
10000K
Notes for Trigger mode:
The function of the
wb_preset
commands depends on the currently selected output chain
(Live or Playback). To select the desired chain use the
out
command.
Live (out = 1):
If the Live chain is selected, this command will configure the R/G/B gains of
the global white balance module, this means it effects the Live chain as well as any
recording that will be started after the change was made.
It is recommended to not
change the preset while a recording is running!
Playback (out = 2):
If the Playback chain is selected, this command will reset the R/G/B
gains to values that were setup when the recording was started, so that the look of the
Playback chain matches the original settings. You can then use the
gain_red, gain_green
and
gain_blue
commands (see below) to fine-tune the Playback output.
10.19
gain_red <gain>
Set gain factor for red component for selected output channel.
This function is for basic color correction or white balance.
red_out = red * gain / 256
Value
Reset
Minimal
Maximal
gain
256
0
4095
Example Pseudo Code:
float gain = 1.23f;
float gain_scaled = gain * 256.0f;
// factor = 314.88
int value = (int) round( gain_scaled );
// value = 315
# gain_red 315