Camera Operation Mode#
カメラ動作モードを選択すると、特定の動作環境で最良の結果を得るために、特定のカメラ設定が自動的に設定されます。
機能を使用する#
Camera Operation Modeの指定#
To specify the acquisition mode, set the CameraOperationMode
パラメーターを次のいずれかの値に設定します。
Standard
: Enables the Standard camera operation mode.LongExposure
: Enables the Long Exposure camera operation mode.
使用可能なCamera Operation Mode#
Standard#
これはデフォルトのカメラ動作モードです。ほとんどの動作条件、つまりパラメーターが極端な値に設定されていない場合に適しています。
長時間露光#
Long Exposureモードは、長時間露光を使用していて、画質を最適化する場合に便利です。
この機能の効果を最大限生かすには、熱放散を提供し、露光時間を長くして、フレームレートをできるだけ低くします。用途で許される場合は、カメラをシングルショットモードで動作させ、必要な画像のみを取得します。
Long Exposureモードでは、露光開始遅延が長くなります。
When you set the CameraOperationMode
parameter to LongExposure
, the frame rate decreases. Check the BslResultingAcquisitionFrameRate
parameter if you want to see the effect it is having.
情報
カメラの動作モードを変更した後、カメラの温度が安定するまで10分以上待ちます。これにより、安定した画質が保証されます。
サンプルコード#
/* 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 */
/* Enable the Standard camera operation mode */
errRes = PylonDeviceFeatureFromString(hdev, "CameraOperationMode", "Standard");
CHECK(errRes);
/* Enable the Long Exposure camera operation mode */
errRes = PylonDeviceFeatureFromString(hdev, "CameraOperationMode", "LongExposure");
CHECK(errRes);
pylon Viewerを使用して、パラメーターを簡単に設定することもできます。