如何构建测光计程序?
给定实时捕获的图像(例如,在 iPhone 上),如何根据光圈、ISO 以编程方式计算所需的曝光时间值?谢谢!
Given a live captured image (say, on an iPhone), how to calculate the require exposure time value programmatically based on the apertures, ISOs? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
捕获的光量与快门速度*ISO/光圈成正比。
因此,例如,如果您的 iPhone 选择了 f2.8、1/60s ISO 800,而您的相机有 f4 和 ISO 100 的限制,则所需的快门速度将为 1/60s*800/2.8*4/100 ≈ 1/5秒。
The amount of captured light is proportional to shutterspeed*ISO/aperture.
So if, for instance, your iPhone has choosen f2.8, 1/60s ISO 800, and your camera has the constraints of f4 and ISO 100, the needed shutter speed would be 1/60s*800/2.8*4/100 ≈ 1/5s.