© 2016 Thorlabs Scientific Imaging206
DCx Camera Functional Description and SDK Manual
IS_EXPOSURE_CMD_GET_FINE_INCREMENT_RANGE
_MIN
Returns the minimum exposure time in fine
increments for some sensors.
More details
pParam: Pointer to variable of type double
returning the minimum value.
nSizeOfParam: 8
IS_EXPOSURE_CMD_GET_FINE_INCREMENT_RANGE
_MAX
Returns the maximum exposure time in fine
increments for some sensors.
More details
pParam: Pointer to variable of type double
returning the maximum value.
nSizeOfParam: 8
IS_EXPOSURE_CMD_GET_FINE_INCREMENT_RANGE
_INC
Returns the exposure time increment in fine
increments for some sensors.
More details
pParam: Pointer to variable of type double
returning the increment.
nSizeOfParam: 8
IS_EXPOSURE_CMD_GET_FINE_INCREMENT_RANGE
Returns the exposure time range in fine
increments for some sensors.
More details
pParam: Pointer to array of type double
returning the minimum and maximum values
and the increment (in exactly this order).
nSizeOfParam: 24
Pointer to a function parameter, whose function
depends on nCommand.
Size (in bytes) of the memory area to which
pParam refers.
Example 1
double dblMin, dblMax, dblInc;
INT nRet = is_Exposure(m_hCam, IS_EXPOSURE_CMD_GET_FINE_INCREMENT_RANGE_MIN,
(void*)&dblMin, sizeof(dblMin));
INT nRet = is_Exposure(m_hCam, IS_EXPOSURE_CMD_GET_FINE_INCREMENT_RANGE_MAX,
(void*)&dblMax, sizeof(dblMax));
INT nRet = is_Exposure(m_hCam, IS_EXPOSURE_CMD_GET_FINE_INCREMENT_RANGE_INC,
(void*)&dblInc, sizeof(dblInc));
Example 2
double dblRange[3];
double dblMin, dblMax, dblInc;
INT nRet = is_Exposure(m_hCam, IS_EXPOSURE_CMD_GET_FINE_INCREMENT_RANGE,
(void*)dblRange, sizeof(dblRange));
if (nRet == IS_SUCCESS)
{