Color Creation and Enhancement AW00097603000
116 Basler aviator GigE
You can set the Gamma Enable parameter, use the Gamma Selector, and set Gamma parameter
values from within your application software by using the Basler pylon API. The following code
snippet illustrates using the API to set the parameter values for sRGB type correction:
// Enable the Gamma feature
Camera.GammaEnable.SetValue( true );
// Set the gamma type to sRGB
Camera.GammaSelector.SetValue ( GammaSelector_sRGB );
The following code snippet illustrates using the API to set the parameter values for user type
correction:
// Enable the Gamma feature
Camera.GammaEnable.SetValue( true );
// Set the gamma type to User
Camera.GammaSelector.SetValue ( GammaSelector_User );
// Set the Gamma value to 1.2
Camera.Gamma.SetValue( 1.2 );
You can also use the Basler pylon Viewer application to easily set the parameters.
For more information about the pylon API and the pylon Viewer, see Section 3.1.1 on page 22.