相机的ISO设置/快门速度 [英] Camera ISO setting/ shutter speed

查看:1377
本文介绍了相机的ISO设置/快门速度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要寻找一种方式来改变我的EVO 4G camerea的感光度。我知道这是不是相机的快门速度,因为它是一台数码相机。下一个最相关的方面是ISO设置,但在Android SDK没有一个方法来处理它。是否有任何人知道的方法吗?即场景模式,曝光或效果

I am looking for a way to change the light sensitivity of my Evo 4G camerea. I know it is not the camera's shutter speed because it is a digital camera. The next most relevant aspect is the ISO setting, but the Android SDK does not have a way to manipulate it. Does any one know an alternative? i.e scene mode, exposure or effects

** parameter.set(ISO,INT)设置ISO。

**parameter.set("iso", int) sets the iso.

有没有人有跑下来什么场景模式值重新presents?

Does anyone have the run down on what scene mode values represents?

感谢您的输入。我已经看过了那些页面无数次。我一直在寻找类似parameter.set功能(ISO,INT),因为该功能成功地改变ISO设置。该相机没有光圈的设置。也许我可以处理一些固件文件。

Thanks for the input. I have looked over those pages numerous times. I was looking for a function similar to parameter.set("iso", int) because this function was successful in changing the iso setting. The camera does not have aperture as a setting. Maybe I can manipulate some firmware files.

推荐答案

对不起它的晚,但可能对他人有所帮助。

Sorry it's late but might be helpful for others

要设定光圈:

Camera.Parameters PARAMS = camera.getParameters();

Camera.Parameters params = camera.getParameters();

params.set(模式,M);

params.set("mode", "m");

params.set(孔,28); //可以是28 32 35 40 45 50 56 63 71 80在默认缩放

params.set("aperture", "28"); //can be 28 32 35 40 45 50 56 63 71 80 on default zoom

params.set(快门速度,9); //视摄像头,例如。 1是指最长

params.set("shutter-speed", 9); // depends on camera, eg. 1 means longest

params.set(异,200);

params.set("iso", 200);

这篇关于相机的ISO设置/快门速度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆