// Disable adaptive tone mappingcamera.BslAdaptiveToneMappingMode.SetValue(BslAdaptiveToneMappingMode_Off);
INodeMap&nodemap=camera.GetNodeMap();// Disable adaptive tone mappingCEnumParameter(nodemap,"BslAdaptiveToneMappingMode").SetValue("Off");
// Disable adaptive tone mappingcamera.Parameters[PLCamera.BslAdaptiveToneMappingMode].SetValue(PLCamera.BslAdaptiveToneMappingMode.Off);
/* Macro to check for errors */#define CHECK(errc) if (GENAPI_E_OK != errc) printErrorAndExit(errc)GENAPIC_RESULTerrRes=GENAPI_E_OK;/* Return value of pylon methods *//* Disable adaptive tone mapping */errRes=PylonDeviceFeatureFromString(hdev,"BslAdaptiveToneMappingMode","Off");CHECK(errRes);
# Disable adaptive tone mappingcamera.BslAdaptiveToneMappingMode.Value="Off"
/* Macro to check for errors */#define CHECK(errc) if (GENAPI_E_OK != errc) printErrorAndExit(errc)GENAPIC_RESULTerrRes=GENAPI_E_OK;/* Return value of pylon methods *//* Disable adaptive tone mapping */errRes=PylonDeviceFeatureFromString(hdev,"BslAdaptiveToneMappingMode","Off");CHECK(errRes);