Topic: 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
Want A Personal Answer?
728,188 people are answering.
About - Privacy - AskEraser - Advertise - Careers - Ask Blog - iPhone - Android - Help - Feedback ©2012 Ask.com