Ordered Dithering
   HOME

TheInfoList



OR:

Ordered dithering is an image dithering algorithm. It is commonly used to display a continuous image on a display of smaller
color depth Color depth or colour depth (see spelling differences), also known as bit depth, is either the number of bits used to indicate the color of a single pixel, or the number of bits used for each color component of a single pixel. When referring to ...
. For example,
Microsoft Windows Windows is a group of several proprietary graphical operating system families developed and marketed by Microsoft. Each family caters to a certain sector of the computing industry. For example, Windows NT for consumers, Windows Server for serv ...
uses it in 16-color graphics modes. The algorithm is characterized by noticeable crosshatch patterns in the result.


Threshold map

The algorithm reduces the number of colors by applying a threshold map to the pixels displayed, causing some pixels to change color, depending on the distance of the original color from the available color entries in the reduced palette. Threshold maps come in various sizes, which is typically a power of two: The map may be rotated or mirrored without affecting the effectiveness of the algorithm. This threshold map (for sides with length as power of two) is also known as an index matrix or Bayer matrix. Arbitrary size threshold maps can be devised with a simple rule: First fill each slot with a successive integer. Then reorder them such that the average distance between two successive numbers in the map is as large as possible, ensuring that the table "wraps" around at edges. For threshold maps whose dimensions are a power of two, the map can be generated recursively via: : \mathbf M_ = \frac \times \begin (2n)^2 \times \mathbf M_n & (2n)^2 \times \mathbf M_n + 2 \\ (2n)^2 \times \mathbf M_n + 3 & (2n)^2 \times \mathbf M_n + 1 \end This function can also be expressed using only bit arithmetic: M(i, j) = bit_reverse(bit_interleave(bitwise_xor(i, j), i)) / n ^ 2


Pre-calculated threshold maps

Rather than storing the threshold map as a matrix of n×n integers from 0 to n^2, depending on the exact hardware used to perform the dithering, it may be beneficial to pre-calculate the thresholds of the map into a floating point format, rather than the traditional integer matrix format shown above. For this, the following formula can be used: Mpre(i,j) = (Mint(i,j)+1) / n^2 This generates a standard threshold matrix. for the 2×2 map: this creates the pre-calculated map: Additionally, normalizing the values to average out their sum to 0 (as done in the dithering algorithm shown below) can be done during pre-processing as well by subtracting from every value: Mpre(i,j) = (Mint(i,j)+1) / n^2 – 0.5 creating the pre-calculated map:


Algorithm

The ordered dithering algorithm renders the image normally, but for each pixel, it offsets its color value with a corresponding value from the threshold map according to its location, causing the pixel's value to be quantized to a different color if it exceeds the threshold. For most dithering purposes, it is sufficient to simply add the threshold value to every pixel (without performing normalization by subtracting ), or equivalently, to compare the pixel's value to the threshold: if the brightness value of a pixel is less than the number in the corresponding cell of the matrix, plot that pixel black, otherwise, plot it white. This lack of normalization slightly increases the average brightness of the image, and causes almost-white pixels to not be dithered. This is not a problem when using a gray scale palette (or any palette where the relative color distances are (nearly) constant), and it is often even desired, since the human eye perceives differences in darker colors more accurately than lighter ones, however, it produces incorrect results especially when using a small or arbitrary palette, so proper normalization should be preferred. In other words, the algorithm performs the following transformation on each color of every pixel: c' = \mathrm\mathopen\left(c + r \times \left(M(x \bmod n, y \bmod n) - 1/2\right)\mathclose\right) where is the threshold map on the -th row and -th column, is the transformed color, and is the amount of spread in color space. Assuming an RGB palette with evenly distanced colors where each color (a triple of red, green and blue values) is represented by an octet from 0 to 255, one would typically choose r \approx \frac. ( is again the normalizing term.) Because the algorithm operates on single pixels and has no conditional statements, it is very fast and suitable for real-time transformations. Additionally, because the location of the dithering patterns always stays the same relative to the display frame, it is less prone to jitter than error-diffusion methods, making it suitable for animations. Because the patterns are more repetitive than error-diffusion method, an image with ordered dithering compresses better. Ordered dithering is more suitable for line-art graphics as it will result in straighter lines and fewer anomalies. The values read from the threshold map should preferably scale into the same range as the minimal difference between distinct colors in the target palette. Equivalently, the size of the map selected should be equal to or larger than the ratio of source colors to target colors. For example, when quantizing a 24 bpp image to 15 bpp (256 colors per channel to 32 colors per channel), the smallest map one would choose would be 4×2, for the ratio of 8 (256:32). This allows expressing each distinct tone of the input with different dithering patterns.


A variable palette: pattern dithering


Non-Bayer approaches

The above thresholding matrix approach describes the
Bayer Bayer AG (, commonly pronounced ; ) is a German multinational corporation, multinational pharmaceutical and biotechnology company and one of the largest pharmaceutical companies in the world. Headquartered in Leverkusen, Bayer's areas of busi ...
family of ordered dithering algorithms. A number of other algorithms are also known; they generally involve changes in the threshold matrix, equivalent to the "noise" in general descriptions of dithering.


Halftone

Halftone dithering performs a form of clustered dithering, creating a look similar to
halftone Halftone is the reprographic Reprography (a portmanteau of ''reproduction'' and ''photography'') is the reproduction of graphics through mechanical or electrical means, such as photography or xerography. Reprography is commonly used in catal ...
patterns, using a specially crafted matrix.


Void and cluster

The Void and cluster algorithm uses a pre-generated
blue noise In audio engineering, electronics, physics, and many other fields, the color of noise or noise spectrum refers to the power spectrum of a noise signal (a signal produced by a stochastic process). Different colors of noise have significantly ...
as the matrix for the dithering process. The blue noise matrix keeps the Bayer's good high frequency content, but with a more uniform coverage of all the frequencies involved shows a much lower amount of patterning. The "voids-and-cluster" method gets its name from the matrix generation procedure, where a black image with randomly initialized white pixels is gaussian-blurred to find the brightest and darkest parts, corresponding to voids and clusters. After a few swaps have evenly distributed the bright and dark parts, the pixels are numbered by importance. It takes significant computational resources to generate the blue noise matrix: on a modern computer a 64×64 matrix requires a couple seconds using the original algorithm. This algorithm can be extended to make animated dither masks which also consider the axis of time. This is done by running the algorithm in three dimensions and using a kernel which is a product of a two-dimensional gaussian kernel on the XY plane, and a one-dimensional Gaussian kernel on the Z axis.


References


Ordered Dithering
(Graphics course project, Visgraf lab, Brazil)
Dithering algorithms
(Lee Daniel Crocker, Paul Boulay and Mike Morra)


Further reading

* {{refend


External links


Matlab implementation of various dithering methods

anim8gdx
Java implementation of various (mostly ordered) dithering methods Image processing Articles with example pseudocode