安卓相机参数
我只是想确认一下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
setParameters
函数设置的。setParameters
,getParameters
就会为您提供默认参数。setParameters
function.getParameters
will give you the default parameters as long assetParameters
in not called on the camera object.