我目前正在使用AVCaptureSession
用相机拍照。
我正在使用:
device.automaticallyEnablesLowLightBoostWhenAvailable = YES;
device.whiteBalanceMode = AVCaptureWhiteBalanceModeContinuousAutoWhiteBalance;
然而,在低光照条件下,这并不是特别有效,previewLayer
与默认相机应用程序或Instagram相机相比非常暗。
我错过了一些设置吗?
答案 0 :(得分:2)
我刚刚意识到某些sessionPreset
不受支持,需要使用AVCaptureSessionPresetPhoto
来automaticallyEnablesLowLightBoostWhenAvailable
工作。