--- ray/src/rt/colortab.c 1989/10/02 14:10:19 1.1 +++ ray/src/rt/colortab.c 1990/02/23 10:08:33 1.13 @@ -22,132 +22,179 @@ static char SCCSid[] = "$SunId$ LBL"; /* histogram resolution */ #define NRED 24 #define NGRN 32 -#define NBLU 18 +#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_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)); + (*set_pixel)(h, r, g, b); + } + return(h); /* return pixel value */ } -make_cmap(gam) /* make gamma correction map */ +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/256.0, 1.0/gam); } +set_cmap(rmap, gmap, bmap) /* set custom color correction map */ +BYTE *rmap, *gmap, *bmap; +{ + bcopy((char *)rmap, (char *)clrmap[RED], 256); + bcopy((char *)gmap, (char *)clrmap[GRN], 256); + bcopy((char *)bmap, (char *)clrmap[BLU], 256); +} + + +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 -cut(tree, height, box, c0, c1) /* partition color space */ +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)); + bcopy((char *)box, (char *)kb, 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); }