Implementation of the separable wavelet transform for image compression. These binaries use code from the libit library (http://libit.sourceforge.net). The programs provided herein are for scientific use only. Commercial use of this software, in particular, is prohibited without authorization from the author. This software is provided in the hope that they will be useful, and without any warranty of any kind. Part of this software contains code from the libit library which is provided here under the same licence by the authors. All other uses of this library are otherwise covered by the LGPL. Encoding: ========= ./wavelet_encoder image.pgm image.cmp levels target_rate Encodes the PGM image 'image.pgm' to the compressed file 'image.cmp' using an oriented wavelet transform on 'level' levels. The target rate is given in bits per pixel. Decoding: ========= ./wavelet_decoder image.cmp image.pgm Decodes the compressed file 'image.cmp' to the PGM image file 'image.pgm'. Codec: ====== ./owavelet_codec image.pgm levels target_rate This does encoding and decoding of the 'image.pgm' PGM image and computes the rate-distorsion performance. The orientation map is output in 'map.pgm'. Other parameters are similar to the encoder.