react-native-vision-camera/ios/CameraView+Focus.swift

42 lines
1.1 KiB
Swift
Raw Normal View History

2021-02-19 08:28:05 -07:00
//
// CameraView+focus.swift
// Cuvent
//
// Created by Marc Rousavy on 19.02.21.
// Copyright © 2021 mrousavy. All rights reserved.
2021-02-19 08:28:05 -07:00
//
import Foundation
extension CameraView {
func focus(point: CGPoint, promise: Promise) {
withPromise(promise) {
guard let device = self.videoDeviceInput?.device else {
throw CameraError.session(SessionError.cameraNotReady)
}
if !device.isFocusPointOfInterestSupported {
throw CameraError.device(DeviceError.focusNotSupported)
}
2021-02-25 05:59:50 -07:00
2021-02-19 08:28:05 -07:00
let normalizedPoint = self.videoPreviewLayer.captureDevicePointConverted(fromLayerPoint: point)
2021-02-25 05:59:50 -07:00
2021-02-19 08:28:05 -07:00
do {
try device.lockForConfiguration()
2021-02-25 05:59:50 -07:00
2021-02-19 08:28:05 -07:00
device.focusPointOfInterest = normalizedPoint
device.focusMode = .continuousAutoFocus
2021-02-25 05:59:50 -07:00
2021-02-19 08:28:05 -07:00
if device.isExposurePointOfInterestSupported {
device.exposurePointOfInterest = normalizedPoint
device.exposureMode = .continuousAutoExposure
}
2021-02-25 05:59:50 -07:00
2021-02-19 08:28:05 -07:00
device.unlockForConfiguration()
return nil
} catch {
throw CameraError.device(DeviceError.configureError)
}
}
}
}