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 轻松设置参数。