ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/colortab.c
(Generate patch)

Comparing ray/src/rt/colortab.c (file contents):
Revision 1.2 by greg, Mon Oct 2 17:12:42 1989 UTC vs.
Revision 1.5 by greg, Tue Oct 3 16:15:52 1989 UTC

# Line 20 | Line 20 | static char SCCSid[] = "$SunId$ LBL";
20  
21   #define NULL            0
22                                  /* histogram resolution */
23 < #define NRED            28
23 > #define NRED            24
24   #define NGRN            32
25 < #define NBLU            22
25 > #define NBLU            16
26   #define HMAX            NGRN
27                                  /* minimum box count for adaptive partition */
28   #define MINSAMP         7
29 +                                /* maximum distance^2 before color reassign */
30 + #define MAXDST2         12
31                                  /* maximum frame buffer depth */
32   #define FBDEPTH         8
31                                /* color map resolution */
32 #define MAPSIZ          128
33                                  /* map a color */
34   #define map_col(c,p)    clrmap[p][ colval(c,p)<1. ? \
35 <                                (int)(colval(c,p)*MAPSIZ) : MAPSIZ-1 ]
35 >                                (int)(colval(c,p)*256.) : 255 ]
36                                  /* color partition tree */
37   #define CNODE           short
38   #define set_branch(p,c) ((c)<<2|(p))
# Line 42 | Line 42 | static char SCCSid[] = "$SunId$ LBL";
42   #define prim(cn)        ((cn)&3)
43   #define pval(cn)        ((cn)>>2)
44                                  /* our color table */
45 < COLR    clrtab[1<<FBDEPTH];
45 > struct tabent {
46 >        long    sum[3];         /* sum of colors using this entry */
47 >        long    n;              /* number of colors */
48 >        short   ent[3];         /* current table value */
49 > }       clrtab[1<<FBDEPTH];
50                                  /* our color correction map */
51 < static BYTE     clrmap[3][MAPSIZ];
51 > static BYTE     clrmap[3][256];
52                                  /* histogram of colors used */
53   static unsigned histo[NRED][NGRN][NBLU];
54                                  /* initial color cube boundaries */
# Line 53 | Line 57 | static int     CLRCUBE[3][2] = {0,NRED,0,NGRN,0,NBLU};
57   static CNODE    ctree[1<<(FBDEPTH+1)];
58  
59  
60 < COLR *
61 < get_ctab(ncolors)       /* assign a color table with max ncolors */
60 > int
61 > new_ctab(ncolors)               /* start new color table with max ncolors */
62   int     ncolors;
63   {
64          if (ncolors < 1 || ncolors > 1<<FBDEPTH)
65 <                return(NULL);
66 <                                /* partition color table */
65 >                return(0);
66 >                                /* clear color table */
67 >        bzero(clrtab, sizeof(clrtab));
68 >                                /* partition color space */
69          cut(ctree, FBDEPTH, CLRCUBE, 0, ncolors);
70                                  /* clear histogram */
71          bzero(histo, sizeof(histo));
72 <                                /* return color table */
73 <        return(clrtab);
72 >                                /* return number of colors used */
73 >        return(ncolors);
74   }
75  
76  
77   int
78 < get_pixel(col)                  /* get pixel for color */
78 > get_pixel(col, set_pixel)       /* get pixel for color */
79   COLOR   col;
80 + int     (*set_pixel)();
81   {
82 +        int     r, g, b;
83          int     cv[3];
84 <        register CNODE  *tp;
84 >        register union { CNODE *t; struct tabent *e; }  p;
85          register int    h;
86 <                                        /* map color */
87 <        cv[RED] = map_col(col,RED);
88 <        cv[GRN] = map_col(col,GRN);
89 <        cv[BLU] = map_col(col,BLU);
90 <                                        /* add to histogram */
86 >                                                /* map color */
87 >        r = map_col(col,RED);
88 >        g = map_col(col,GRN);
89 >        b = map_col(col,BLU);
90 >                                                /* reduce resolution */
91 >        cv[RED] = (r*NRED)>>8;
92 >        cv[GRN] = (g*NGRN)>>8;
93 >        cv[BLU] = (b*NBLU)>>8;
94 >                                                /* add to histogram */
95          histo[cv[RED]][cv[GRN]][cv[BLU]]++;
96 <                                        /* find pixel value in tree */
97 <        tp = ctree;
96 >                                                /* find pixel in tree */
97 >        p.t = ctree;
98          for (h = FBDEPTH; h > 0; h--) {
99 <                if (is_pval(*tp))
99 >                if (is_pval(*p.t))
100                          break;
101 <                if (cv[prim(*tp)] < part(*tp))
102 <                        tp++;                   /* left branch */
101 >                if (cv[prim(*p.t)] < part(*p.t))
102 >                        p.t++;          /* left branch */
103                  else
104 <                        tp += 1<<h;             /* right branch */
104 >                        p.t += 1<<h;    /* right branch */
105          }
106 +        h = pval(*p.t);
107 +                                                /* add to color table */
108 +        p.e = clrtab + h;
109 +                                        /* add to sum */
110 +        p.e->sum[RED] += r;
111 +        p.e->sum[GRN] += g;
112 +        p.e->sum[BLU] += b;
113 +        p.e->n++;
114 +                                        /* recompute average */
115 +        r = p.e->sum[RED] / p.e->n;
116 +        g = p.e->sum[GRN] / p.e->n;
117 +        b = p.e->sum[BLU] / p.e->n;
118 +                                        /* check for movement */
119 +        if (p.e->n == 1 ||
120 +                        (r-p.e->ent[RED])*(r-p.e->ent[RED]) +
121 +                        (g-p.e->ent[GRN])*(g-p.e->ent[GRN]) +
122 +                        (b-p.e->ent[BLU])*(b-p.e->ent[BLU]) > MAXDST2) {
123 +                p.e->ent[RED] = r;
124 +                p.e->ent[GRN] = g;      /* reassign pixel */
125 +                p.e->ent[BLU] = b;
126   #ifdef notdef
127 <        printf("distance (%d,%d,%d)\n",
128 <                cv[RED] - clrtab[pval(*tp)][RED]*NRED/256,
97 <                cv[GRN] - clrtab[pval(*tp)][GRN]*NGRN/256,
98 <                cv[BLU] - clrtab[pval(*tp)][BLU]*NBLU/256);
127 >                printf("pixel %d = (%d,%d,%d) (%d refs)\n",
128 >                                h, r, g, b, p.e->n);
129   #endif
130 <        return(pval(*tp));
130 >                (*set_pixel)(h, r, g, b);
131 >        }
132 >        return(h);                              /* return pixel value */
133   }
134  
135  
136 < make_cmap(gam)                  /* make gamma correction map */
136 > make_gmap(gam)                  /* make gamma correction map */
137   double  gam;
138   {
139          extern double   pow();
108        double  d;
140          register int    i;
141          
142 <        for (i = 0; i < MAPSIZ; i++) {
143 <                d = pow(i/(double)MAPSIZ, 1.0/gam);
144 <                clrmap[RED][i] = d * NRED;
145 <                clrmap[GRN][i] = d * NGRN;
115 <                clrmap[BLU][i] = d * NBLU;
116 <        }
142 >        for (i = 0; i < 256; i++)
143 >                clrmap[RED][i] =
144 >                clrmap[GRN][i] =
145 >                clrmap[BLU][i] = 256.0 * pow(i/256.0, 1.0/gam);
146   }
147  
148  
149 + set_cmap(rmap, gmap, bmap)      /* set custom color correction map */
150 + BYTE    *rmap, *gmap, *bmap;
151 + {
152 +        bcopy(rmap, clrmap[RED], 256);
153 +        bcopy(gmap, clrmap[GRN], 256);
154 +        bcopy(bmap, clrmap[BLU], 256);
155 + }
156 +
157 +
158   static
159   cut(tree, height, box, c0, c1)          /* partition color space */
160   register CNODE  *tree;
# Line 126 | Line 164 | int    c0, c1;
164   {
165          int     kb[3][2];
166          
167 <        if (c1-c0 == 1) {               /* assign color */
130 <                clrtab[c0][RED] = ((box[RED][0]+box[RED][1])<<7)/NRED;
131 <                clrtab[c0][GRN] = ((box[GRN][0]+box[GRN][1])<<7)/NGRN;
132 <                clrtab[c0][BLU] = ((box[BLU][0]+box[BLU][1])<<7)/NBLU;
133 <                clrtab[c0][EXP] = COLXS;
167 >        if (c1-c0 <= 1) {               /* assign pixel */
168                  *tree = set_pval(c0);
135 #ifdef notdef
136                printf("final box size = (%d,%d,%d)\n",
137                        box[RED][1] - box[RED][0],
138                        box[GRN][1] - box[GRN][0],
139                        box[BLU][1] - box[BLU][0]);
140 #endif
169                  return;
170          }
171                                          /* split box */
172          *tree = split(box);
173          bcopy(box, kb, sizeof(kb));
174 +                                                /* do left (lesser) branch */
175          kb[prim(*tree)][1] = part(*tree);
176 <        cut(tree+1, height-1, kb, c0, (c0+c1)>>1);              /* lesser */
176 >        cut(tree+1, height-1, kb, c0, (c0+c1)>>1);
177 >                                                /* do right branch */
178          kb[prim(*tree)][0] = part(*tree);
179          kb[prim(*tree)][1] = box[prim(*tree)][1];
180 <        cut(tree+(1<<height), height-1, kb, (c0+c1)>>1, c1);    /* greater */
180 >        cut(tree+(1<<height), height-1, kb, (c0+c1)>>1, c1);
181   }
182  
183  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines