Index into the
Gammas array for the selected camera gamma.
Namespace: ASCOM.DriverAccessAssembly: ASCOM.DriverAccess (in ASCOM.DriverAccess.dll) Version: 7.0.0-rc.0+0
Syntaxpublic short Gamma { get; set; }
Public Property Gamma As Short
Get
Set
public:
virtual property short Gamma {
short get () sealed;
void set (short value) sealed;
}
Property Value
Int16Short integer index for the current camera gamma in the
Gammas string array.
Return Value
Int16Index into the Gammas array for the selected camera gamma
Implements
IVideoV2Gamma
Exceptions
RemarksGamma can be used to adjust the gamma setting of the camera, if supported. There are two typical usage scenarios:
- Discrete gamma video cameras will return a 0-based array of strings - Gammas, which correspond to different discrete gamma settings supported by the camera. Gamma must be set to an integer in this range. GammaMin and GammaMax must thrown an exception if
this mode is used.
- Adjustable gain video cameras - GammaMin and GammaMax return integers, which specify the valid range for Gamma.
The driver must default Gamma to a valid value.
See Also