跳转到内容

Flare Removal (dart E)#

当相机对准强光源时,拍出的照片可能会出现镜头眩光伪影。“眩光消除”自动功能可让您消除这些伪影。

该功能的使用#

To enable or disable flare removal, set the BslFlareRemovalAuto parameter to one of the following operating modes:

  • Continuous: The camera removes lens flare artifacts continuously while images are being acquired.
  • Off: Disables the Flare Removal auto function.

示例代码#

// Enable Flare Removal by setting the operating mode to Continuous
camera.BslFlareRemovalAuto.SetValue(BslFlareRemovalAuto_Continuous);
INodeMap& nodemap = camera.GetNodeMap();
// Enable Flare Removal by setting the operating mode to Continuous
CEnumParameter(nodemap, "BslFlareRemovalAuto").SetValue("Continuous");
// Enable Flare Removal by setting the operating mode to Continuous
camera.Parameters[PLCamera.BslFlareRemovalAuto].SetValue(PLCamera.BslFlareRemovalAuto.Continuous);
/* 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);
# Enable Flare Removal by setting the operating mode to Continuous
camera.BslFlareRemovalAuto.Value = "Continuous"

您还可以使用 pylon Viewer 轻松设置参数。