Lossy compression: Difference between revisions

From MultimediaWiki
Jump to navigation Jump to search
(→‎Quantization: My definition of quantization and some trivia)
(Move quantization and subsampling information into their own articles.)
Line 4: Line 4:


Perceptual  Algorithms are designed to remove information that humans will not notice.
Perceptual  Algorithms are designed to remove information that humans will not notice.
== Subsampling ==
Subsampling exploits the fact that humans are more sensitive to luminance than chrominance (color). The [[JPEG]] algorithm (amongst others) uses subsampling to throw away color information. Although color information is lost, it is difficult for humans to percieve the difference between the original image and an image with subsampled color. Of course this is dependent on the level of subsampling. Commonly used image subsampling values are / 2, / 4, / 8. Subsampling is used in all modern video codecs.
== Quantization ==
Quantization is the process of throwing away high frequency data.
Another possible definition of quantization is mapping one set elements into smaller set of elements. This covers both scalar quantization (mapping some numbers to just one number) and vector quantization (mapping similar blocks of data to one block).
Scalar quantization may be uniform where the same number of elements are mapped to one value, and nonuniform otherwise. One special case of scalar quantization is palettization.


[[Category:Multimedia Terminology]]
[[Category:Multimedia Terminology]]

Revision as of 08:15, 8 June 2007

Lossy compression uses perceptual coding to throw away data. Perceptual coding refers to generally two systems:

  1. The human vision system.
  2. The human auditory system.

Perceptual Algorithms are designed to remove information that humans will not notice.