Capture API: 不断改变焦点到屏幕中心并自动调整曝光
Capture API: Continously change focus to the center of the screen and adjust exposure automatically
我正在使用 https://github.com/CosmicMind/Material 特别是 Capture API,它基本上是一个简化的 AVFoundation 框架。
我的目标是让应用在每次屏幕移动时重置焦点,特别是即使不点击屏幕也始终关注屏幕中央的内容。
当前可以在点击时更改焦点。
仅使用捕获 api 使用
guard let capture = captureController?.capture else {
return
}
您尝试过open func focus(at point: CGPoint)
功能吗?我会通过将 isTapToFocusEnabled
设置为 false 来禁用点击焦点,然后使用上述函数以编程方式设置焦点。
我正在使用 https://github.com/CosmicMind/Material 特别是 Capture API,它基本上是一个简化的 AVFoundation 框架。
我的目标是让应用在每次屏幕移动时重置焦点,特别是即使不点击屏幕也始终关注屏幕中央的内容。
当前可以在点击时更改焦点。
仅使用捕获 api 使用
guard let capture = captureController?.capture else {
return
}
您尝试过open func focus(at point: CGPoint)
功能吗?我会通过将 isTapToFocusEnabled
设置为 false 来禁用点击焦点,然后使用上述函数以编程方式设置焦点。