安卓相机参数

发布于 2024-11-19 12:18:10 字数 220 浏览 1 评论 0原文

我只是想确认一下 Android 如何管理相机参数。是不是Camera类的setParameters(param)函数设置的相机参数只在相机对象的生命周期内有效。一旦相机对象被释放,参数将被设置回默认值。只要没有进行参数设置,getParameters()将始终获取默认的相机参数。我的理解正确吗?如果我错了,请纠正我。

先感谢您, 艺术风格

I would just like to confirm how Android manages the Camera Parameters. Is the camera parameters set by the setParameters(param) function of the Camera class is only valid during the lifetime of the camera object. Once the camera object is released, the parameters will be set back to its default values. As long as no setting of parameters is done, getParameters() will always get the default camera parameters. Is my understanding correct? Please correct me if I am wrong.

Thank you in advance,
artsylar

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蘸点软妹酱 2024-11-26 12:18:10
  • 是的,CameraParameters 是使用 setParameters 函数设置的。
  • 是的,它仅在 Camera 对象的生命周期内有效。
  • 相机参数与相机对象密切相关,因此当您释放相机对象时,相机参数本身没有多大意义。
  • 是的,只要未在相机对象上调用 setParametersgetParameters 就会为您提供默认参数。
  • Yes, CameraParameters are set using the setParameters function.
  • Yes, it is valid only during the lifetime of the Camera object.
  • Camera Parameters are very much tied to a camera object so when you release a camera object the camera parameters will not have much meaning on their own.
  • Yes, getParameters will give you the default parameters as long as setParameters in not called on the camera object.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文