IOS>> dwt>> 返回
项目作者: xdsopl

项目描述 :
playing with dwt, lossy and lossless image compression
高级语言: C
项目地址: git://github.com/xdsopl/dwt.git
创建时间: 2014-02-14T17:21:00Z
项目社区:https://github.com/xdsopl/dwt

开源协议:BSD Zero Clause License

下载


Discrete Wavelet Transform (DWT) Based Lossless Image Compression with Bitstream Truncation Support

Quick start:

Encode the smpte.pnm PNM picture file into encoded.dwt:

  1. ./encode smpte.pnm encoded.dwt

Decode encoded.dwt back to the original picture file decoded.pnm:

  1. ./decode encoded.dwt decoded.pnm

View the decoded.pnm picture file in feh:

  1. feh decoded.pnm

Limited Storage Capacity: Bitstream Truncation

Allocate a maximum of 65536 bytes of space for compression. If necessary, the encoder will discard quality bytes to ensure the output stays below 65536 bytes:

  1. ./encode smpte.pnm encoded.dwt 65536

References

  • Run-length encodings
    by Solomon W. Golomb - 1966
  • Image coding using wavelet transform
    by M. Antonini, M. Barlaud, P. Mathieu and I. Daubechies - 1992
  • Factoring wavelet transforms into lifting steps
    by Ingrid Daubechies and Wim Sweldens - 1996
  • Wavelet transforms that map integers to integers
    by A. R. Calderbank, I. Daubechies, W. Sweldens, and B.-L. Yeo - 1996