Topic: Dwt 2000
Not finding your answer? Try searching the web for Dwt 2000
Answers to Common Questions
In JPEG2000, it uses DWT (lossless 5/3 filters), how can we use C...
#include <stdio.h> #include <stdlib.h> #include <errno.h> typedef struct image { long w,h; /* dimensions */ long **pic; } IMAGE; int DEBUG = 0; void freeraw( IMAGE *img ) { int ii; for( ii = -2; ii < img->h + 2 && img->pic[ii]; ii++ ) free( img->pic... Read More »
Source: http://www.experts-exchange.com/Q_20418735.htm