Flare Removal (dart E)#
该功能的使用#
要启用或禁用眩光消除功能,请将 BslFlareRemovalAuto
参数设置为以下工作模式:
Continuous
:相机会在采集图像时持续消除镜头眩光伪影。Off
:禁用“眩光消除”自动功能。
示例代码#
/* 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 Flare Removal by setting the operating mode to Continuous */
errRes = PylonDeviceFeatureFromString(hdev, "BslFlareRemovalAuto", "Continuous");
CHECK(errRes);
您还可以使用 pylon Viewer 轻松设置参数。