// Set the Saturation parameter to 1.4camera.BslSaturation.SetValue(1.4);
INodeMap&nodemap=camera.GetNodeMap();// Set the Saturation parameter to 1.4CFloatParameter(nodemap,"BslSaturation").SetValue(1.4);
// Set the Saturation parameter to 1.4camera.Parameters[PLCamera.BslSaturation].SetValue(1.4);
/* 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 *//* Set the Saturation parameter to 1.4 */errRes=PylonDeviceSetFloatFeature(hdev,"BslSaturation",1.4);CHECK(errRes);
# Set the Saturation parameter to 1.4camera.BslSaturation.Value=1.4