为AVFoundation定制图层相机创建精确的自动对焦和曝光的最佳方法是什么?例如,目前我的相机预览图层是方形的,我希望将相机焦点和曝光指定到该帧边界.如果可能的话,我需要在
Swift 2中使用它,如果没有,请写下你的答案我可以自己转换它.
当前自动聚焦和曝光:但是正如您所看到的,这将在聚焦时评估整个视图.
override func touchesBegan(touches: Set<UITouch>,withEvent event: UIEvent?) { //Get Touch Point let Point = touches.first!.locationInView(self.capture) //Assign Auto Focus and Auto Exposour if let device = currentCameraInput { do { try! device.lockForConfiguration() if device.focusPointOfInterestSupported{ //Add Focus on Point device.focusPointOfInterest = Point device.focusMode = AVCaptureFocusMode.AutoFocus } if device.exposurePointOfInterestSupported{ //Add Exposure on Point device.exposurePointOfInterest = Point device.exposureMode = AVCaptureExposureMode.AutoExpose } device.unlockForConfiguration() } } }
解决方法
public func captureDevicePointOfInterestForPoint(pointInLayer: CGPoint) -> CGPoint
将根据您的AVCaptureVideoPreviewLayer的设置为您提供设备关注点.见docs.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。