Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is "antibanding" in photographing?

What is "antibanding" in photography? I read this term in Android documentation for the android.hardware.Camera.Parameters.setAntibanding() method.

like image 577
Chris.Zou Avatar asked Aug 31 '11 08:08

Chris.Zou


2 Answers

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.

like image 117
Alexander Avatar answered Sep 18 '22 14:09

Alexander


Nice example from this website:

Gradient effects may suffer from banding (contouring)
where noticeable steps can be seen from one shade to another.

enter image description here

Apparently this artifact can be typically caused by jpeg compression.
The Antibanding() feature tries to prevent this artifact.

like image 43
Anne Avatar answered Sep 18 '22 14:09

Anne