Database
cal.asc
Associated article: JPEG-Like Image Compression, Part 1
Tags: Database Web Development Tools Design
_JPEG-LIKE IMAGE COMPRESSION_
by Craig A. Lindley
Listing One
// Discrete Cosine Transform Class Interface File
#ifndef DCT_HPP
#define DCT_HPP
#include "misc.hpp"
#define FORWARDREORDER 1 // Direction of zigzag
#define INVERSEREORDER 0 // 1 is pixel order to freq order
// 0 is ...


