什么是“抗条带”?在拍照?
什么是摄影中的“反条带”?我在 Android 文档中阅读了这个术语 android.hardware.Camera.Parameters.setAntibanding() 方法。
What is "antibanding" in photography? I read this term in Android documentation for the android.hardware.Camera.Parameters.setAntibanding() method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
抗条带功能应减少由光源振荡和曝光控制算法引起的帧或图像亮度波动。
如果光源以 50 Hz 振荡,并且图像或视频所需的曝光量不是 10 倍(可整除),那么您应该会在图像上看到更亮的条带。它们表现出频率不匹配。
Antibanding function should decrease fluctuations in brightness of frames or images, caused by a light source oscillations and exposure control algorithm.
If light source oscillates with 50 Hz, and exposure needed for the image or video is not fold (divisible) of 10 then you should see brighter bands across the image. They demonstrate frequency mismatch.
这个网站的很好的例子:
显然,此伪影通常是由 jpeg 压缩引起的。
Antibanding()
功能尝试阻止这种伪影。Nice example from this website:
Apparently this artifact can be typically caused by jpeg compression.
The
Antibanding()
feature tries to prevent this artifact.