I'm learning about image processing. I want to know about lossless and lossy image compression algorithm. Anybody can give me any suggestions ? Thanks so much!
|
closed as not a real question by Michael Petrotta, bdares, Mitch Wheat, kigurai, Brad Larson♦ Nov 1 '11 at 18:00
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Lossy compression algorithms don't provide a perfect bit-for-bit copy when decoded, but they usually achieve a smaller file size. A typical lossy format is JPEG, and a typical lossless format is PNG 24 bit or TIFF. A more modern lossy format is JPEG-2000, but it is not very common. Lossy formats work by transforming the image into another domain (DCT for JPEG, Wavelet for JPEG 2000) where bands of information can be limited with minimal damage to the visibility of the image. Lossless formats may perform compression or not. If they compress they use a method such as LZW which can provide the exact bit stream as output as they were given as input, similar to zip compression. |
|||||
|