露光開始遅延#
露出開始遅延の長さは、カメラモデルやExposure Mode、Exposure Time Mode、Sensor Bit Depthなどのさまざまなカメラ機能の設定によって異なります。
タイミングや遅延など、Baslerカメラでの画像取得プロセスの詳細については、Acquisition Timing Informationトピックを参照してください。
機能を使用する#
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を使用して、パラメーターを簡単に設定することもできます。