© 2016 Thorlabs Scientific Imaging
4 Programming (SDK)
331
The camera type defined in the .ini file does not
match the current camera model.
Camera is in standby mode, function not allowed
One of the submitted parameters is outside the
valid range or is not supported for this sensor or
is not available in this mode.
IS_INVALID_WB_BINNING_MODE
Mono binning/mono sub-sampling do not
support automatic white balance.
An IO request from the uc480 driver failed.
Possibly the versions of the uc480.dll (API) and
the driver file (uc480_usb.sys) do not match.
The camera does not contain any calibration
data.
The camera model used here does not support
this function or setting.
Function executed successfully
A timeout occurred. An image capturing process
could not be terminated within the allowable
period.
Related functions
is_ParameterSet()
is_GetAutoInfo()
is_SetHardwareGain()
is_SetHWGainFactor()
is_Exposure()
is_SetFrameRate()
is_AOI()
Examples
//Enable auto gain control:
double dEnable = 1;
int ret = is_SetAutoParameter (hCam, IS_SET_ENABLE_AUTO_GAIN, &dEnable, 0);
//Set brightness setpoint to 128:
double nominal = 128;
int ret = is_SetAutoParameter (hCam, IS_SET_AUTO_REFERENCE, &nominal, 0);
//Return shutter control limit:
double maxShutter;
int ret = is_SetAutoParameter (hCam, IS_GET_AUTO_SHUTTER_MAX, &maxShutter, 0);