Android camera2 API在AF模式下获得焦距

Android camera2 API在AF模式下获得焦距,第1张

概述我正在使用 Android camera2 API. 我可以在手动对焦模式下使用LENS_FOCUS_DISTANCE获得焦距值.但是,AF模式下的属性始终为零.在AF模式下有没有办法获得焦距? Shortest distance from frontmost surface of the lens that can be brought into sharp focus. If the lens 我正在使用 Android camera2 API.

我可以在手动对焦模式下使用LENS_FOCUS_disTANCE获得焦距值.但是,AF模式下的属性始终为零.在AF模式下有没有办法获得焦距?

解决方法

Shortest distance from frontmost surface of the lens that can be
brought into sharp focus.

If the lens is fixed-focus,this will be 0.

http://developer.android.com/intl/es/reference/android/hardware/camera2/CameraCharacteristics.html

换句话说,如果您想要管理焦点,请记住LENS_INFO_MINIMUM_FOCUS_disTANCE为您提供最小焦点,但要获得“最大”焦点,您必须使用LENS_INFO_HYPERFOCAL_disTANCE.

float yourMinFocus = mCameracharacteristics.get(Cameracharacteristics.LENS_INFO_MINIMUM_FOCUS_disTANCE);float yourMaxFocus = mCameracharacteristics.get(Cameracharacteristics.LENS_INFO_HYPERFOCAL_disTANCE);
总结

以上是内存溢出为你收集整理的Android camera2 API在AF模式下获得焦距全部内容,希望文章能够帮你解决Android camera2 API在AF模式下获得焦距所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://www.outofmemory.cn/web/1138160.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存