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

Comparing ray/src/px/clrtab.c (file contents):
Revision 2.2 by greg, Tue Oct 13 09:07:51 1992 UTC vs.
Revision 2.12 by greg, Sat Feb 22 02:07:27 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Simple median-cut color quantization based on colortab.c
6   */
# Line 23 | Line 20 | static char SCCSid[] = "$SunId$ LBL";
20   #define part(cn)        ((cn)>>2)
21   #define prim(cn)        ((cn)&3)
22                                  /* our color table (global) */
23 < BYTE    clrtab[256][3];
23 > extern BYTE     clrtab[256][3];
24                                  /* histogram of colors / color assignments */
25   static unsigned histo[NRED][NGRN][NBLU];
26   #define cndx(c)         histo[((c)[RED]*NRED)>>8][((c)[GRN]*NGRN)>>8][((c)[BLU]*NBLU)>>8]
# Line 32 | Line 29 | static int     CLRCUBE[3][2] = {0,NRED,0,NGRN,0,NBLU};
29                                  /* maximum propagated error during dithering */
30   #define MAXERR          20
31                                  /* define CLOSEST to get closest colors */
32 < #define CLOSEST         1
32 > #ifndef CLOSEST
33 > #ifdef SPEED
34 > #if  SPEED > 8
35 > #define CLOSEST         1       /* this step takes a little longer */
36 > #endif
37 > #endif
38 > #endif
39  
40 + static  cut(), mktabent(), closest(), addneigh(), setclosest();
41 + static int      split();
42 + static unsigned dist();
43  
44 < new_histo()             /* clear our histogram */
44 >
45 > new_histo(n)            /* clear our histogram */
46 > int     n;
47   {
48          bzero((char *)histo, sizeof(histo));
49 +        return(0);
50   }
51  
52  
# Line 71 | Line 80 | int    ncolors;
80   #ifdef CLOSEST
81          closest(ncolors);       /* ensure colors picked are closest */
82   #endif
83 +                                /* reset dithering function */
84 +        dith_colrs((BYTE *)NULL, (COLR *)NULL, 0);
85                                  /* return new color table size */
86          return(ncolors);
87   }
# Line 101 | Line 112 | register BYTE  *bs;
112   register COLR   *cs;
113   int     n;
114   {
115 <        static short    (*cerr)[3];
115 >        static short    (*cerr)[3] = NULL;
116          static int      N = 0;
117          int     err[3], errp[3];
118          register int    x, i;
119  
120          if (n != N) {           /* get error propogation array */
121 <                if (N)
122 <                        cerr = (short (*)[3])realloc((char *)cerr,
123 <                                        3*n*sizeof(short));
124 <                else
121 >                if (N) {
122 >                        free((void *)cerr);
123 >                        cerr = NULL;
124 >                }
125 >                if (n)
126                          cerr = (short (*)[3])malloc(3*n*sizeof(short));
127                  if (cerr == NULL) {
128                          N = 0;
# Line 175 | Line 187 | register int   box[3][2];
187   #define c0      r
188          register int    r, g, b;
189          int     pri;
190 <        int     t[HMAX], med;
190 >        long    t[HMAX], med;
191                                          /* find dominant axis */
192          pri = RED;
193          if (box[GRN][1]-box[GRN][0] > box[pri][1]-box[pri][0])
# Line 231 | Line 243 | mktabent(p, box)       /* compute average color for box and
243   int     p;
244   register int    box[3][2];
245   {
246 <        long    sum[3];
247 <        int     r, g, n;
248 <        register int    b, c;
246 >        unsigned long   sum[3];
247 >        unsigned        r, g;
248 >        unsigned long   n;
249 >        register unsigned       b, c;
250                                                  /* sum pixels in box */
251          n = 0;
252          sum[RED] = sum[GRN] = sum[BLU] = 0;
# Line 248 | Line 261 | register int   box[3][2];
261                      }
262                      histo[r][g][b] = p;         /* assign pixel */
263                  }
264 +        if (n >= (1L<<23)/HMAX) {               /* avoid overflow */
265 +                sum[RED] /= n;
266 +                sum[GRN] /= n;
267 +                sum[BLU] /= n;
268 +                n = 1;
269 +        }
270          if (n) {                                /* compute average */
271                  clrtab[p][RED] = sum[RED]*256/NRED/n;
272                  clrtab[p][GRN] = sum[GRN]*256/NGRN/n;
# Line 279 | Line 298 | int    n;
298                  neigh[i][0] = i;                /* identity is terminator */
299          }
300                                          /* make neighbor lists */
301 <        for (r = 0; r < NRED-1; r++)
302 <            for (g = 0; g < NGRN-1; g++)
303 <                for (b = 0; b < NBLU-1; b++) {
304 <                    if (histo[r][g][b] != histo[r+1][g][b])
301 >        for (r = 0; r < NRED; r++)
302 >            for (g = 0; g < NGRN; g++)
303 >                for (b = 0; b < NBLU; b++) {
304 >                    if (r < NRED-1 && histo[r][g][b] != histo[r+1][g][b])
305                          addneigh(neigh, histo[r][g][b], histo[r+1][g][b]);
306 <                    if (histo[r][g][b] != histo[r][g+1][b])
306 >                    if (g < NGRN-1 && histo[r][g][b] != histo[r][g+1][b])
307                          addneigh(neigh, histo[r][g][b], histo[r][g+1][b]);
308 <                    if (histo[r][g][b] != histo[r][g][b+1])
308 >                    if (b < NBLU-1 && histo[r][g][b] != histo[r][g][b+1])
309                          addneigh(neigh, histo[r][g][b], histo[r][g][b+1]);
310                  }
311                                          /* assign closest values */
# Line 335 | Line 354 | dist(col, r, g, b)             /* find distance from clrtab entry
354   register BYTE   col[3];
355   int     r, g, b;
356   {
357 <        register unsigned       tmp;
357 >        register int    tmp;
358          register unsigned       sum;
359          
360          tmp = col[RED]*NRED/256 - r;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines