89 / 160
Copyright © 2016-2018 TOSHIBA TELI CORPORATION, All Rights Reserved.
http://www.toshiba-teli.co.jp/en/index.htm
D4259344C
● Control with TeliCamSDK
Camera feature API
Control ExposureTime using dedicated API.
API name
Description
GetCamExposureTimeMinMax
Get minimum and maximum value
GetCamExposureTime
Get current ExposureTime value
SetCamExposureTime
Set new ExposureTime value
GetCamExposureTimeControl
Get current ExposureTime mode
SetCamExposureTimeControl
Set new ExposureTime mode
ExposureTimeControl parameter
Description
CAM_EXPOSURE_TIME_CONTROL_NO_SPECIFY NoSpecify
CAM_EXPOSURE_TIME_CONTROL_MANUAL
Manual
CAM_EXPOSURE_TIME_CONTROL_AUTO
Auto
Please refer to [Controlling camera feature functions] in [TeliCamAPI Library manual] for more detail.
GenICam function API
Control ExposureTime using GenICam API.
ExposureTime
1. Sets an exposure time by ‘ExposureTime’
// GenICam node handle
CAM_NODE_HANDLE = NULL;
CAM_NODE_HANDLE = NULL;
CAM_NODE_HANDLE = NULL;
// GenICam node handle
CAM_NODE_HANDLE hNode = NULL;
// ExposureTime = 1000us
float64_t dExposureTime = 1000.0;
// Retrieve GenICam node.
Nd_GetNode(s_hCam, "ExposureTime", &hNode);
// Set ExposureTime Value
Nd_SetFloatValue(s_hCam, hNode, dExposureTime);