Adaptive Tone Mapping (dart E)#
该功能的使用#
To configure adaptive tone mapping, set the BslAdaptiveToneMappingMode
参数设置为以下值:
Auto
: Enables automatic adaptive tone mapping.熄灭
: Disables adaptive tone mapping. This can be useful, e.g., if the camera's automatic adjustments produce images that are too bright or too dark.
示例代码#
/* 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 */
/* Disable adaptive tone mapping */
errRes = PylonDeviceFeatureFromString(hdev, "BslAdaptiveToneMappingMode", "Off");
CHECK(errRes);
/* 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 */
/* Disable adaptive tone mapping */
errRes = PylonDeviceFeatureFromString(hdev, "BslAdaptiveToneMappingMode", "Off");
CHECK(errRes);