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

Comparing ray/src/common/color.c (file contents):
Revision 1.1 by greg, Thu Feb 2 10:34:29 1989 UTC vs.
Revision 2.6 by greg, Tue Mar 2 09:09:51 1993 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1986 Regents of the University of California */
1 > /* Copyright (c) 1991 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 14 | Line 14 | static char SCCSid[] = "$SunId$ LBL";
14  
15   #include  "color.h"
16  
17 < #ifdef  SPEC_RGB
18 < /*
19 < *      The following table contains the CIE tristimulus integrals
20 < *  for X, Y, and Z.  The table is cumulative, so that
21 < *  each color coordinate integrates to 1.
22 < */
17 > #define  MINELEN        8       /* minimum scanline length for encoding */
18 > #define  MAXELEN        0x7fff  /* maximum scanline length for encoding */
19 > #define  MINRUN         4       /* minimum run length */
20  
21 < #define  STARTWL        380             /* starting wavelength (nanometers) */
22 < #define  INCWL          10              /* wavelength increment */
23 < #define  NINC           40              /* # of values */
21 > #ifndef frexp
22 > extern double  frexp();
23 > #endif
24  
28 static BYTE  chroma[3][NINC] = {
29        {                                                       /* X */
30                0,   0,   0,   2,   6,   13,  22,  30,  36,  41,
31                42,  43,  43,  44,  46,  52,  60,  71,  87,  106,
32                128, 153, 178, 200, 219, 233, 243, 249, 252, 254,
33                255, 255, 255, 255, 255, 255, 255, 255, 255, 255
34        }, {                                                    /* Y */
35                0,   0,   0,   0,   0,   1,   2,   4,   7,   11,
36                17,  24,  34,  48,  64,  84,  105, 127, 148, 169,
37                188, 205, 220, 232, 240, 246, 250, 253, 254, 255,
38                255, 255, 255, 255, 255, 255, 255, 255, 255, 255
39        }, {                                                    /* Z */
40                0,   0,   2,   10,  32,  66,  118, 153, 191, 220,
41                237, 246, 251, 253, 254, 255, 255, 255, 255, 255,
42                255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
43                255, 255, 255, 255, 255, 255, 255, 255, 255, 255
44        }
45 };
25  
26 <
27 < spec_rgb(col, s, e)             /* comput RGB color from spectral range */
28 < COLOR  col;
50 < int  s, e;
26 > char *
27 > tempbuffer(len)                 /* get a temporary buffer */
28 > unsigned  len;
29   {
30 <        COLOR  ciecolor;
30 >        extern char  *malloc(), *realloc();
31 >        static char  *tempbuf = NULL;
32 >        static unsigned  tempbuflen = 0;
33  
34 <        spec_cie(ciecolor, s, e);
35 <        cie_rgb(col, ciecolor);
34 >        if (len > tempbuflen) {
35 >                if (tempbuflen > 0)
36 >                        tempbuf = realloc(tempbuf, len);
37 >                else
38 >                        tempbuf = malloc(len);
39 >                tempbuflen = tempbuf==NULL ? 0 : len;
40 >        }
41 >        return(tempbuf);
42   }
43  
44  
45 < spec_cie(col, s, e)             /* compute a color from a spectral range */
46 < COLOR  col;             /* returned color */
47 < int  s, e;              /* starting and ending wavelengths */
45 > fwritecolrs(scanline, len, fp)          /* write out a colr scanline */
46 > register COLR  *scanline;
47 > unsigned  len;
48 > register FILE  *fp;
49   {
50 <        register int  i, d, r;
50 >        register int  i, j, beg, cnt;
51 >        int  c2;
52          
53 <        s -= STARTWL;
54 <        if (s < 0)
55 <                s = 0;
56 <
57 <        e -= STARTWL;
58 <        if (e >= INCWL*(NINC - 1))
59 <                e = INCWL*(NINC - 1) - 1;
60 <
61 <        d = e / INCWL;                  /* interpolate values */
62 <        r = e % INCWL;
63 <        for (i = 0; i < 3; i++)
64 <                col[i] = chroma[i][d]*(INCWL - r) + chroma[i][d + 1]*r;
65 <
66 <        d = s / INCWL;
67 <        r = s % INCWL;
68 <        for (i = 0; i < 3; i++)
69 <                col[i] -= chroma[i][d]*(INCWL - r) - chroma[i][d + 1]*r;
70 <
71 <        col[RED] = (col[RED] + 0.5) / (256*INCWL);
72 <        col[GRN] = (col[GRN] + 0.5) / (256*INCWL);
73 <        col[BLU] = (col[BLU] + 0.5) / (256*INCWL);
74 < }
75 <
76 <
77 < cie_rgb(rgbcolor, ciecolor)             /* convert CIE to RGB (NTSC) */
78 < register COLOR  rgbcolor, ciecolor;
79 < {
80 <        static float  cmat[3][3] = {
81 <                1.73, -.48, -.26,
82 <                -.81, 1.65, -.02,
83 <                 .08, -.17, 1.28,
84 <        };
85 <        register int  i;
86 <
87 <        for (i = 0; i < 3; i++) {
88 <                rgbcolor[i] =   cmat[i][0]*ciecolor[0] +
89 <                                cmat[i][1]*ciecolor[1] +
90 <                                cmat[i][2]*ciecolor[2] ;
91 <                if (rgbcolor[i] < 0.0)
104 <                        rgbcolor[i] = 0.0;
53 >        if (len < MINELEN | len > MAXELEN)      /* OOBs, write out flat */
54 >                return(fwrite((char *)scanline,sizeof(COLR),len,fp) - len);
55 >                                        /* put magic header */
56 >        putc(2, fp);
57 >        putc(2, fp);
58 >        putc(len>>8, fp);
59 >        putc(len&255, fp);
60 >                                        /* put components seperately */
61 >        for (i = 0; i < 4; i++) {
62 >            for (j = 0; j < len; j += cnt) {    /* find next run */
63 >                for (beg = j; beg < len; beg += cnt) {
64 >                    for (cnt = 1; cnt < 127 && beg+cnt < len &&
65 >                            scanline[beg+cnt][i] == scanline[beg][i]; cnt++)
66 >                        ;
67 >                    if (cnt >= MINRUN)
68 >                        break;                  /* long enough */
69 >                }
70 >                if (beg-j > 1 && beg-j < MINRUN) {
71 >                    c2 = j+1;
72 >                    while (scanline[c2++][i] == scanline[j][i])
73 >                        if (c2 == beg) {        /* short run */
74 >                            putc(128+beg-j, fp);
75 >                            putc(scanline[j][i], fp);
76 >                            j = beg;
77 >                            break;
78 >                        }
79 >                }
80 >                while (j < beg) {               /* write out non-run */
81 >                    if ((c2 = beg-j) > 128) c2 = 128;
82 >                    putc(c2, fp);
83 >                    while (c2--)
84 >                        putc(scanline[j++][i], fp);
85 >                }
86 >                if (cnt >= MINRUN) {            /* write out run */
87 >                    putc(128+cnt, fp);
88 >                    putc(scanline[beg][i], fp);
89 >                } else
90 >                    cnt = 0;
91 >            }
92          }
93 +        return(ferror(fp) ? -1 : 0);
94   }
107 #endif
95  
96  
97 < fwritecolrs(scanline, len, fp)          /* write out a colr scanline */
97 > freadcolrs(scanline, len, fp)           /* read in an encoded colr scanline */
98   register COLR  *scanline;
99   int  len;
100   register FILE  *fp;
101   {
102 <        COLR  lastcolr;
103 <        int  rept;
104 <        
105 <        lastcolr[RED] = lastcolr[GRN] = lastcolr[BLU] = 1;
106 <        lastcolr[EXP] = 0;
107 <        rept = 0;
108 <        
109 <        while (len > 0) {
110 <                if (scanline[0][EXP] == lastcolr[EXP] &&
111 <                                scanline[0][RED] == lastcolr[RED] &&
125 <                                scanline[0][GRN] == lastcolr[GRN] &&
126 <                                scanline[0][BLU] == lastcolr[BLU])
127 <                        rept++;
128 <                else {
129 <                        while (rept) {          /* write out count */
130 <                                putc(1, fp);
131 <                                putc(1, fp);
132 <                                putc(1, fp);
133 <                                putc(rept & 255, fp);
134 <                                rept >>= 8;
135 <                        }
136 <                        putc(scanline[0][RED], fp);     /* new color */
137 <                        putc(scanline[0][GRN], fp);
138 <                        putc(scanline[0][BLU], fp);
139 <                        putc(scanline[0][EXP], fp);
140 <                        copycolr(lastcolr, scanline[0]);
141 <                        rept = 0;
142 <                }
143 <                scanline++;
144 <                len--;
102 >        register int  i, j;
103 >        int  code, val;
104 >                                        /* determine scanline type */
105 >        if (len < MINELEN | len > MAXELEN)
106 >                return(oldreadcolrs(scanline, len, fp));
107 >        if ((i = getc(fp)) == EOF)
108 >                return(-1);
109 >        if (i != 2) {
110 >                ungetc(i, fp);
111 >                return(oldreadcolrs(scanline, len, fp));
112          }
113 <        while (rept) {          /* write out count */
114 <                putc(1, fp);
115 <                putc(1, fp);
116 <                putc(1, fp);
117 <                putc(rept & 255, fp);
118 <                rept >>= 8;
113 >        scanline[0][GRN] = getc(fp);
114 >        scanline[0][BLU] = getc(fp);
115 >        if ((i = getc(fp)) == EOF)
116 >                return(-1);
117 >        if (scanline[0][GRN] != 2 || scanline[0][BLU] & 128) {
118 >                scanline[0][RED] = 2;
119 >                scanline[0][EXP] = i;
120 >                return(oldreadcolrs(scanline+1, len-1, fp));
121          }
122 <        return(ferror(fp) ? -1 : 0);
122 >        if ((scanline[0][BLU]<<8 | i) != len)
123 >                return(-1);             /* length mismatch! */
124 >                                        /* read each component */
125 >        for (i = 0; i < 4; i++)
126 >            for (j = 0; j < len; ) {
127 >                if ((code = getc(fp)) == EOF)
128 >                    return(-1);
129 >                if (code > 128) {       /* run */
130 >                    code &= 127;
131 >                    val = getc(fp);
132 >                    while (code--)
133 >                        scanline[j++][i] = val;
134 >                } else                  /* non-run */
135 >                    while (code--)
136 >                        scanline[j++][i] = getc(fp);
137 >            }
138 >        return(feof(fp) ? -1 : 0);
139   }
140  
141  
142 < freadcolrs(scanline, len, fp)           /* read in a colr scanline */
142 > oldreadcolrs(scanline, len, fp)         /* read in an old colr scanline */
143   register COLR  *scanline;
144   int  len;
145   register FILE  *fp;
# Line 193 | Line 178 | register FILE  *fp;
178   fwritescan(scanline, len, fp)           /* write out a scanline */
179   register COLOR  *scanline;
180   int  len;
181 < register FILE  *fp;
181 > FILE  *fp;
182   {
183 <        COLR  lastcolr, thiscolr;
184 <        int  rept;
185 <        
186 <        lastcolr[RED] = lastcolr[GRN] = lastcolr[BLU] = 1;
187 <        lastcolr[EXP] = 0;
188 <        rept = 0;
189 <        
190 <        while (len > 0) {
191 <                setcolr(thiscolr, scanline[0][RED],
183 >        COLR  *clrscan;
184 >        int  n;
185 >        register COLR  *sp;
186 >                                        /* get scanline buffer */
187 >        if ((sp = (COLR *)tempbuffer(len*sizeof(COLR))) == NULL)
188 >                return(-1);
189 >        clrscan = sp;
190 >                                        /* convert scanline */
191 >        n = len;
192 >        while (n-- > 0) {
193 >                setcolr(sp[0], scanline[0][RED],
194                                    scanline[0][GRN],
195                                    scanline[0][BLU]);
209                if (thiscolr[EXP] == lastcolr[EXP] &&
210                                thiscolr[RED] == lastcolr[RED] &&
211                                thiscolr[GRN] == lastcolr[GRN] &&
212                                thiscolr[BLU] == lastcolr[BLU])
213                        rept++;
214                else {
215                        while (rept) {          /* write out count */
216                                putc(1, fp);
217                                putc(1, fp);
218                                putc(1, fp);
219                                putc(rept & 255, fp);
220                                rept >>= 8;
221                        }
222                        putc(thiscolr[RED], fp);        /* new color */
223                        putc(thiscolr[GRN], fp);
224                        putc(thiscolr[BLU], fp);
225                        putc(thiscolr[EXP], fp);
226                        copycolr(lastcolr, thiscolr);
227                        rept = 0;
228                }
196                  scanline++;
197 <                len--;
197 >                sp++;
198          }
199 <        while (rept) {          /* write out count */
233 <                putc(1, fp);
234 <                putc(1, fp);
235 <                putc(1, fp);
236 <                putc(rept & 255, fp);
237 <                rept >>= 8;
238 <        }
239 <        return(ferror(fp) ? -1 : 0);
199 >        return(fwritecolrs(clrscan, len, fp));
200   }
201  
202  
203   freadscan(scanline, len, fp)            /* read in a scanline */
204   register COLOR  *scanline;
205   int  len;
206 < register FILE  *fp;
206 > FILE  *fp;
207   {
208 <        COLR  thiscolr;
209 <        int  rshift;
210 <        register int  i;
211 <        
212 <        rshift = 0;
213 <        
214 <        while (len > 0) {
215 <                thiscolr[RED] = getc(fp);
216 <                thiscolr[GRN] = getc(fp);
217 <                thiscolr[BLU] = getc(fp);
218 <                thiscolr[EXP] = getc(fp);
219 <                if (feof(fp) || ferror(fp))
220 <                        return(-1);
221 <                if (thiscolr[RED] == 1 &&
222 <                                thiscolr[GRN] == 1 &&
223 <                                thiscolr[BLU] == 1) {
224 <                        for (i = thiscolr[EXP] << rshift; i > 0; i--) {
265 <                                copycolor(scanline[0], scanline[-1]);
266 <                                scanline++;
267 <                                len--;
268 <                        }
269 <                        rshift += 8;
270 <                } else {
271 <                        colr_color(scanline[0], thiscolr);
272 <                        scanline++;
273 <                        len--;
274 <                        rshift = 0;
275 <                }
208 >        register COLR  *clrscan;
209 >
210 >        if ((clrscan = (COLR *)tempbuffer(len*sizeof(COLR))) == NULL)
211 >                return(-1);
212 >        if (freadcolrs(clrscan, len, fp) < 0)
213 >                return(-1);
214 >                                        /* convert scanline */
215 >        colr_color(scanline[0], clrscan[0]);
216 >        while (--len > 0) {
217 >                scanline++; clrscan++;
218 >                if (clrscan[0][RED] == clrscan[-1][RED] &&
219 >                            clrscan[0][GRN] == clrscan[-1][GRN] &&
220 >                            clrscan[0][BLU] == clrscan[-1][BLU] &&
221 >                            clrscan[0][EXP] == clrscan[-1][EXP])
222 >                        copycolor(scanline[0], scanline[-1]);
223 >                else
224 >                        colr_color(scanline[0], clrscan[0]);
225          }
226          return(0);
227   }
# Line 282 | Line 231 | setcolr(clr, r, g, b)          /* assign a short color value *
231   register COLR  clr;
232   double  r, g, b;
233   {
285        double  frexp();
234          double  d;
235          int  e;
236          
237          d = r > g ? r : g;
238          if (b > d) d = b;
239  
240 <        if (d <= 0.0) {
240 >        if (d <= 1e-32) {
241                  clr[RED] = clr[GRN] = clr[BLU] = 0;
242                  clr[EXP] = 0;
243                  return;
# Line 308 | Line 256 | colr_color(col, clr)           /* convert short to float color
256   register COLOR  col;
257   register COLR  clr;
258   {
259 <        double  ldexp(), f;
259 >        double  f;
260          
261          if (clr[EXP] == 0)
262                  col[RED] = col[GRN] = col[BLU] = 0.0;
263          else {
264 <                f = ldexp(1.0, clr[EXP]-(COLXS+8));
264 >                f = ldexp(1.0, (int)clr[EXP]-(COLXS+8));
265                  col[RED] = (clr[RED] + 0.5)*f;
266                  col[GRN] = (clr[GRN] + 0.5)*f;
267                  col[BLU] = (clr[BLU] + 0.5)*f;
# Line 321 | Line 269 | register COLR  clr;
269   }
270  
271  
272 < #ifdef  FREXP
273 < double
274 < frexp(x, ip)            /* call it paranoia, I've seen the lib version */
327 < register double  x;
328 < int  *ip;
272 > bigdiff(c1, c2, md)                     /* c1 delta c2 > md? */
273 > register COLOR  c1, c2;
274 > double  md;
275   {
330        int  neg;
276          register int  i;
277  
278 <        if (neg = (x < 0.0))
279 <                x = -x;
280 <        else if (x == 0.0) {
281 <                *ip = 0;
282 <                return(0.0);
338 <        }
339 <        if (x < 0.5)
340 <                for (i = 0; x < 0.5; i--)
341 <                        x *= 2.0;
342 <        else
343 <                for (i = 0; x >= 1.0; i++)
344 <                        x /= 2.0;
345 <        *ip = i;
346 <        if (neg)
347 <                return(-x);
348 <        else
349 <                return(x);
278 >        for (i = 0; i < 3; i++)
279 >                if (colval(c1,i)-colval(c2,i) > md*colval(c2,i) ||
280 >                        colval(c2,i)-colval(c1,i) > md*colval(c1,i))
281 >                        return(1);
282 >        return(0);
283   }
351 #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines