曝光开始延迟#
曝光开始延时的长短取决于相机型号、及各种相机功能的设置,例如 Exposure Mode、Exposure Time 模式或 Sensor Bit Depth。
要了解有关 Basler 相机上图像采集流程的更多信息(例如,计时和延时),请参见采集计时信息主题。
该功能的使用#
确定 Exposure Start Delay#
To determine the exposure start delay at the current settings, get the value of the BslExposureStartDelay
parameter. The exposure start delay is measured in microseconds.
示例代码#
/* Macro to check for errors */
#define CHECK(errc) if (GENAPI_E_OK != errc) printErrorAndExit(errc)
GENAPIC_RESULT errRes = GENAPI_E_OK; /* Return value of pylon methods */
double d = 0;
/* Determine the exposure start delay at the current settings */
errRes = PylonDeviceGetFloatFeature(hdev, "BslExposureStartDelay", &d);
CHECK(errRes);
您也可以使用 pylon Viewer 轻松设置参数。