Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
ilu_scaling.c
Package: devil-1.7.99.tar.gz [view]
Upload User: wmy0603
Upload Date: 2022-05-02
Package Size: 1808k
Code Size: 10k
Category:
Compress-Decompress algrithms
Development Platform:
Visual C++
- // http://www.cse.ucsc.edu/~pang/160/f98/Gems/GemsIII/
- /*
- * Filtered Image Rescaling
- *
- * by Dale Schumacher
- */
- #if 0
- #include "ilu_internal.h"
- char _Copyright[] = "Public Domain 1991 by Dale Schumacher";
- #define WHITE_PIXEL (255)
- #define BLACK_PIXEL (0)
- /*
- * generic image access and i/o support routines
- */
- ILubyte get_pixel(ILuint x, ILuint y)
- {
- Image *im = NULL;
- int yy = -1;
- Pixel *p = NULL;
- if((x < 0) || (x >= image->xsize) || (y < 0) || (y >= image->ysize)) {
- return(0);
- }
- if((im != image) || (yy != y)) {
- im = image;
- yy = y;
- p = image->data + (y * image->span);
- }
- return(p[x]);
- }
- void
- get_row(row, image, y)
- Pixel *row;
- Image *image;
- int y;
- {
- if((y < 0) || (y >= image->ysize)) {
- return;
- }
- memcpy(row,
- image->data + (y * image->span),
- (sizeof(Pixel) * image->xsize));
- }
- void
- get_column(column, image, x)
- Pixel *column;
- Image *image;
- int x;
- {
- int i, d;
- Pixel *p;
- if((x < 0) || (x >= image->xsize)) {
- return;
- }
- d = image->span;
- for(i = image->ysize, p = image->data + x; i-- > 0; p += d) {
- *column++ = *p;
- }
- }
- Pixel
- put_pixel(image, x, y, data)
- Image *image;
- int x, y;
- Pixel data;
- {
- Image *im = NULL;
- ILint yy = -1;
- Pixel *p = NULL;
- if((x < 0) || (x >= image->xsize) || (y < 0) || (y >= image->ysize)) {
- return(0);
- }
- if((im != image) || (yy != y)) {
- im = image;
- yy = y;
- p = image->data + (y * image->span);
- }
- return(p[x] = data);
- }
- /*
- * filter function definitions
- */
- #define filter_support (1.0)
- double filter( double t) {
- /* f(t) = 2|t|^3 - 3|t|^2 + 1, -1 <= t <= 1 */
- if(t < 0.0) t = -t;
- if(t < 1.0) return((2.0 * t - 3.0) * t * t + 1.0);
- return(0.0);
- }
- #define box_support (0.5)
- double box_filter( double t) {
- if((t > -0.5) && (t <= 0.5)) return(1.0);
- return(0.0);
- }
- #define triangle_support (1.0)
- double triangle_filter( double t ) {
- if(t < 0.0) t = -t;
- if(t < 1.0) return(1.0 - t);
- return(0.0);
- }
- #define bell_support (1.5)
- double bell_filter( double t) { /* box (*) box (*) box */
- if(t < 0) t = -t;
- if(t < .5) return(.75 - (t * t));
- if(t < 1.5) {
- t = (t - 1.5);
- return(.5 * (t * t));
- }
- return(0.0);
- }
- #define B_spline_support (2.0)
- double
- B_spline_filter(t) /* box (*) box (*) box (*) box */
- double t;
- {
- double tt;
- if(t < 0) t = -t;
- if(t < 1) {
- tt = t * t;
- return((.5 * tt * t) - tt + (2.0 / 3.0));
- } else if(t < 2) {
- t = 2 - t;
- return((1.0 / 6.0) * (t * t * t));
- }
- return(0.0);
- }
- double
- sinc(x)
- double x;
- {
- x *= IL_PI;
- if(x != 0) return(sin(x) / x);
- return(1.0);
- }
- #define Lanczos3_support (3.0)
- double
- Lanczos3_filter(t)
- double t;
- {
- if(t < 0) t = -t;
- if(t < 3.0) return(sinc(t) * sinc(t/3.0));
- return(0.0);
- }
- #define Mitchell_support (2.0)
- #define B (1.0 / 3.0)
- #define C (1.0 / 3.0)
- double
- Mitchell_filter(t)
- double t;
- {
- double tt;
- tt = t * t;
- if(t < 0) t = -t;
- if(t < 1.0) {
- t = (((12.0 - 9.0 * B - 6.0 * C) * (t * tt))
- + ((-18.0 + 12.0 * B + 6.0 * C) * tt)
- + (6.0 - 2 * B));
- return(t / 6.0);
- } else if(t < 2.0) {
- t = (((-1.0 * B - 6.0 * C) * (t * tt))
- + ((6.0 * B + 30.0 * C) * tt)
- + ((-12.0 * B - 48.0 * C) * t)
- + (8.0 * B + 24 * C));
- return(t / 6.0);
- }
- return(0.0);
- }
- /*
- * image rescaling routine
- */
- typedef struct {
- int pixel;
- double weight;
- } CONTRIB;
- typedef struct {
- int n; /* number of contributors */
- CONTRIB *p; /* pointer to list of contributions */
- } CLIST;
- CLIST *contrib; /* array of contribution lists */
- void
- zoom(dst, src, filterf, fwidth)
- Image *dst; /* destination image structure */
- Image *src; /* source image structure */
- double (*filterf)(); /* filter function */
- double fwidth; /* filter width (support) */
- {
- Image *tmp; /* intermediate image */
- double xscale, yscale; /* zoom scale factors */
- int i, j, k; /* loop variables */
- int n; /* pixel number */
- double center, left, right; /* filter calculation variables */
- double width, fscale, weight; /* filter calculation variables */
- Pixel *raster; /* a row or column of pixels */
- /* create intermediate image to hold horizontal zoom */
- tmp = new_image(dst->xsize, src->ysize);
- xscale = (double) dst->xsize / (double) src->xsize;
- yscale = (double) dst->ysize / (double) src->ysize;
- /* pre-calculate filter contributions for a row */
- contrib = (CLIST*)icalloc(dst->xsize, sizeof(CLIST));
- if(xscale < 1.0) {
- width = fwidth / xscale;
- fscale = 1.0 / xscale;
- for(i = 0; i < dst->xsize; ++i) {
- contrib[i].n = 0;
- contrib[i].p = (CONTRIB*)icalloc((int) (width * 2 + 1),
- sizeof(CONTRIB));
- center = (double) i / xscale;
- left = ceil(center - width);
- right = floor(center + width);
- for(j = left; j <= right; ++j) {
- weight = center - (double) j;
- weight = (*filterf)(weight / fscale) / fscale;
- if(j < 0) {
- n = -j;
- } else if(j >= src->xsize) {
- n = (src->xsize - j) + src->xsize - 1;
- } else {
- n = j;
- }
- k = contrib[i].n++;
- contrib[i].p[k].pixel = n;
- contrib[i].p[k].weight = weight;
- }
- }
- } else {
- for(i = 0; i < dst->xsize; ++i) {
- contrib[i].n = 0;
- contrib[i].p = (CONTRIB*)icalloc((int) (fwidth * 2 + 1), sizeof(CONTRIB));
- center = (double) i / xscale;
- left = ceil(center - fwidth);
- right = floor(center + fwidth);
- for(j = left; j <= right; ++j) {
- weight = center - (double) j;
- weight = (*filterf)(weight);
- if(j < 0) {
- n = -j;
- } else if(j >= src->xsize) {
- n = (src->xsize - j) + src->xsize - 1;
- } else {
- n = j;
- }
- k = contrib[i].n++;
- contrib[i].p[k].pixel = n;
- contrib[i].p[k].weight = weight;
- }
- }
- }
- /* apply filter to zoom horizontally from src to tmp */
- raster = (Pixel*)icalloc(src->xsize, sizeof(Pixel));
- for(k = 0; k < tmp->ysize; ++k) {
- get_row(raster, src, k);
- for(i = 0; i < tmp->xsize; ++i) {
- weight = 0.0;
- for(j = 0; j < contrib[i].n; ++j) {
- weight += raster[contrib[i].p[j].pixel]
- * contrib[i].p[j].weight;
- }
- put_pixel(tmp, i, k,
- (Pixel)CLAMP(weight, BLACK_PIXEL, WHITE_PIXEL));
- }
- }
- ifree(raster);
- /* free the memory allocated for horizontal filter weights */
- for(i = 0; i < tmp->xsize; ++i) {
- ifree(contrib[i].p);
- }
- ifree(contrib);
- /* pre-calculate filter contributions for a column */
- contrib = (CLIST*)icalloc(dst->ysize, sizeof(CLIST));
- if(yscale < 1.0) {
- width = fwidth / yscale;
- fscale = 1.0 / yscale;
- for(i = 0; i < dst->ysize; ++i) {
- contrib[i].n = 0;
- contrib[i].p = (CONTRIB*)icalloc((int) (width * 2 + 1), sizeof(CONTRIB));
- center = (double) i / yscale;
- left = ceil(center - width);
- right = floor(center + width);
- for(j = left; j <= right; ++j) {
- weight = center - (double) j;
- weight = (*filterf)(weight / fscale) / fscale;
- if(j < 0) {
- n = -j;
- } else if(j >= tmp->ysize) {
- n = (tmp->ysize - j) + tmp->ysize - 1;
- } else {
- n = j;
- }
- k = contrib[i].n++;
- contrib[i].p[k].pixel = n;
- contrib[i].p[k].weight = weight;
- }
- }
- } else {
- for(i = 0; i < dst->ysize; ++i) {
- contrib[i].n = 0;
- contrib[i].p = (CONTRIB*)icalloc((int) (fwidth * 2 + 1),
- sizeof(CONTRIB));
- center = (double) i / yscale;
- left = ceil(center - fwidth);
- right = floor(center + fwidth);
- for(j = left; j <= right; ++j) {
- weight = center - (double) j;
- weight = (*filterf)(weight);
- if(j < 0) {
- n = -j;
- } else if(j >= tmp->ysize) {
- n = (tmp->ysize - j) + tmp->ysize - 1;
- } else {
- n = j;
- }
- k = contrib[i].n++;
- contrib[i].p[k].pixel = n;
- contrib[i].p[k].weight = weight;
- }
- }
- }
- /* apply filter to zoom vertically from tmp to dst */
- raster = (Pixel*)icalloc(tmp->ysize, sizeof(Pixel));
- for(k = 0; k < dst->xsize; ++k) {
- get_column(raster, tmp, k);
- for(i = 0; i < dst->ysize; ++i) {
- weight = 0.0;
- for(j = 0; j < contrib[i].n; ++j) {
- weight += raster[contrib[i].p[j].pixel]
- * contrib[i].p[j].weight;
- }
- put_pixel(dst, k, i,
- (Pixel)CLAMP(weight, BLACK_PIXEL, WHITE_PIXEL));
- }
- }
- ifree(raster);
- /* free the memory allocated for vertical filter weights */
- for(i = 0; i < dst->ysize; ++i) {
- ifree(contrib[i].p);
- }
- ifree(contrib);
- free_image(tmp);
- }
- /*
- * command line interface
- */
- void
- usage()
- {
- fprintf(stderr, "usage: %s [-options] input.bm output.bmn", _Program);
- fprintf(stderr, "
- options:n
- -x xsize output x sizen
- -y ysize output y sizen
- -f filter filter typen
- {b=box, t=triangle, q=bell, B=B-spline, h=hermite, l=Lanczos3, m=Mitchell}n
- ");
- exit(1);
- }
- main(argc, argv)
- int argc;
- char *argv[];
- {
- register int c;
- int optind;
- char *optarg;
- int xsize = 0, ysize = 0;
- double (*f)() = filter;
- double s = filter_support;
- char *dstfile, *srcfile;
- Image *dst, *src;
- FILE *fp;
- while((c = getopt(argc, argv, "x:y:f:V")) != EOF) {
- switch(c) {
- case 'x': xsize = atoi(optarg); break;
- case 'y': ysize = atoi(optarg); break;
- case 'f':
- switch(*optarg) {
- case 'b': f=box_filter; s=box_support; break;
- case 't': f=triangle_filter; s=triangle_support; break;
- case 'q': f=bell_filter; s=bell_support; break;
- case 'B': f=B_spline_filter; s=B_spline_support; break;
- case 'h': f=filter; s=filter_support; break;
- case 'l': f=Lanczos3_filter; s=Lanczos3_support; break;
- case 'm': f=Mitchell_filter; s=Mitchell_support; break;
- default: usage();
- }
- break;
- case 'V': banner(); exit(EXIT_SUCCESS);
- case '?': usage();
- default: usage();
- }
- }
- if((argc - optind) != 2) usage();
- srcfile = argv[optind];
- dstfile = argv[optind + 1];
- if(((fp = fopen(srcfile, "r")) == NULL)
- || ((src = load_image(fp)) == NULL)) {
- fprintf(stderr, "%s: can't load source image '%s'n",
- _Program, srcfile);
- exit(EXIT_FAILURE);
- }
- fclose(fp);
- if(xsize <= 0) xsize = src->xsize;
- if(ysize <= 0) ysize = src->ysize;
- dst = new_image(xsize, ysize);
- zoom(dst, src, f, s);
- if(((fp = fopen(dstfile, "w")) == NULL)
- || (save_image(fp, dst) != 0)) {
- fprintf(stderr, "%s: can't save destination image '%s'n",
- _Program, dstfile);
- exit(EXIT_FAILURE);
- }
- fclose(fp);
- exit(EXIT_SUCCESS);
- }
- #endif