--- ray/src/rt/colortab.c 1989/10/02 17:12:42 1.2 +++ ray/src/rt/colortab.c 2004/03/30 16:13:01 2.9 @@ -1,9 +1,6 @@ -/* Copyright (c) 1989 Regents of the University of California */ - #ifndef lint -static char SCCSid[] = "$SunId$ LBL"; +static const char RCSid[] = "$Id: colortab.c,v 2.9 2004/03/30 16:13:01 schorsch Exp $"; #endif - /* * colortab.c - allocate and control dynamic color table. * @@ -14,140 +11,200 @@ static char SCCSid[] = "$SunId$ LBL"; * histogram is cleared. This algorithm * performs only as well as the next drawing's color * distribution is correlated to the last. + * + * External symbols declared in drvier.h */ +#include "copyright.h" + +#include + +#include "standard.h" #include "color.h" +#include "driver.h" -#define NULL 0 /* histogram resolution */ -#define NRED 28 +#define NRED 24 #define NGRN 32 -#define NBLU 22 +#define NBLU 16 #define HMAX NGRN /* minimum box count for adaptive partition */ #define MINSAMP 7 - /* maximum frame buffer depth */ -#define FBDEPTH 8 - /* color map resolution */ -#define MAPSIZ 128 + /* maximum distance^2 before color reassign */ +#define MAXDST2 12 /* map a color */ #define map_col(c,p) clrmap[p][ colval(c,p)<1. ? \ - (int)(colval(c,p)*MAPSIZ) : MAPSIZ-1 ] + (int)(colval(c,p)*256.) : 255 ] /* color partition tree */ #define CNODE short -#define set_branch(p,c) ((c)<<2|(p)) +#define set_branch(p,c) ((c)<<2|(p)) #define set_pval(pv) ((pv)<<2|3) +#define is_branch(cn) (((cn)&3)!=3) #define is_pval(cn) (((cn)&3)==3) #define part(cn) ((cn)>>2) #define prim(cn) ((cn)&3) #define pval(cn) ((cn)>>2) /* our color table */ -COLR clrtab[1< 1<>8; + cv[GRN] = (g*NGRN)>>8; + cv[BLU] = (b*NBLU)>>8; + /* add to histogram */ histo[cv[RED]][cv[GRN]][cv[BLU]]++; - /* find pixel value in tree */ - tp = ctree; - for (h = FBDEPTH; h > 0; h--) { - if (is_pval(*tp)) - break; + /* find pixel in tree */ + for (tp = ctree, h = 0; is_branch(*tp); h++) if (cv[prim(*tp)] < part(*tp)) - tp++; /* left branch */ + tp += 1< MAXDST2) { + clrtab[h].ent[RED] = r; + clrtab[h].ent[GRN] = g; /* reassign pixel */ + clrtab[h].ent[BLU] = b; +#ifdef DEBUG + sprintf(errmsg, "pixel %d = (%d,%d,%d) (%d refs)\n", + h, r, g, b, clrtab[h].n); + eputs(errmsg); #endif - return(pval(*tp)); + (*newcolr)(h, r, g, b); + } + return(h); /* return pixel value */ } -make_cmap(gam) /* make gamma correction map */ -double gam; +void +make_gmap(gam) /* make gamma correction map */ +double gam; { - extern double pow(); - double d; register int i; - for (i = 0; i < MAPSIZ; i++) { - d = pow(i/(double)MAPSIZ, 1.0/gam); - clrmap[RED][i] = d * NRED; - clrmap[GRN][i] = d * NGRN; - clrmap[BLU][i] = d * NBLU; - } + for (i = 0; i < 256; i++) + clrmap[RED][i] = + clrmap[GRN][i] = + clrmap[BLU][i] = 256.0 * pow((i+0.5)/256.0, 1.0/gam); } -static -cut(tree, height, box, c0, c1) /* partition color space */ +void +set_cmap(rmap, gmap, bmap) /* set custom color correction map */ +BYTE *rmap, *gmap, *bmap; +{ + memcpy((void *)clrmap[RED], (void *)rmap, 256); + memcpy((void *)clrmap[GRN], (void *)gmap, 256); + memcpy((void *)clrmap[BLU], (void *)bmap, 256); +} + + +void +map_color(rgb, col) /* map a color to a byte triplet */ +BYTE rgb[3]; +COLOR col; +{ + rgb[RED] = map_col(col,RED); + rgb[GRN] = map_col(col,GRN); + rgb[BLU] = map_col(col,BLU); +} + + +static void +cut(tree, level, box, c0, c1) /* partition color space */ register CNODE *tree; -int height; +int level; register int box[3][2]; int c0, c1; { int kb[3][2]; - if (c1-c0 == 1) { /* assign color */ - clrtab[c0][RED] = ((box[RED][0]+box[RED][1])<<7)/NRED; - clrtab[c0][GRN] = ((box[GRN][0]+box[GRN][1])<<7)/NGRN; - clrtab[c0][BLU] = ((box[BLU][0]+box[BLU][1])<<7)/NBLU; - clrtab[c0][EXP] = COLXS; + if (c1-c0 <= 1) { /* assign pixel */ *tree = set_pval(c0); -#ifdef notdef - printf("final box size = (%d,%d,%d)\n", - box[RED][1] - box[RED][0], - box[GRN][1] - box[GRN][0], - box[BLU][1] - box[BLU][0]); -#endif return; } /* split box */ *tree = split(box); - bcopy(box, kb, sizeof(kb)); + memcpy((void *)kb, (void *)box, sizeof(kb)); + /* do left (lesser) branch */ kb[prim(*tree)][1] = part(*tree); - cut(tree+1, height-1, kb, c0, (c0+c1)>>1); /* lesser */ + cut(tree+(1<>1); + /* do right branch */ kb[prim(*tree)][0] = part(*tree); kb[prim(*tree)][1] = box[prim(*tree)][1]; - cut(tree+(1<>1, c1); /* greater */ + cut(tree+(1<<(level+1)), level+1, kb, (c0+c1)>>1, c1); } @@ -158,7 +215,7 @@ register int box[3][2]; #define c0 r register int r, g, b; int pri; - int t[HMAX], med; + long t[HMAX], med; /* find dominant axis */ pri = RED; if (box[GRN][1]-box[GRN][0] > box[pri][1]-box[pri][0])