Balance White Adjustment Damping#
機能を使用する#
仕組み#
ホワイトバランス調整のダンピング係数を指定した場合、カラーはすぐには調整されず、一定の遅延後に調整されます。これは、カメラの視界の内外を移動する物体によって、オートファンクションの自動制御メカニズムが中断されないようにする場合などに便利です。
ダンピング係数の指定#
ダンピング係数を指定するには、次の手順に従います。
- パラメーターを Balance White Auto auto function to
Once
またはContinuous
. - Adjust the
BalanceWhiteAdjustmentDampingAbs
parameter value.
You can set the parameter in a range from 0.0 to 0.9766. Higher parameter values result in a faster adaptation, i.e., the colors are adjusted more quickly. By default, the factor is set to the maximum value.
サンプルコード#
/* 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 */
/* Set balance white adjustment damping to 0.5859 */
errRes = PylonDeviceSetFloatFeature(hdev, "BalanceWhiteAdjustmentDampingAbs", 0.5859);
CHECK(errRes);
pylon Viewerを使用して、パラメーターを簡単に設定することもできます。