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

Comparing ray/src/px/pcomb.c (file contents):
Revision 1.6 by greg, Thu Sep 14 09:20:38 1989 UTC vs.
Revision 1.15 by greg, Fri May 24 14:46:14 1991 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1989 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 19 | Line 19 | static char SCCSid[] = "$SunId$ LBL";
19   #include "calcomp.h"
20  
21   #define MAXINP          32              /* maximum number of input files */
22 + #define WINSIZ          9               /* scanline window size */
23 + #define MIDSCN          4               /* current scan position */
24  
25 + #define BRT             (-1)            /* special index for brightness */
26 +
27   struct {
28          char    *name;          /* file name */
29          FILE    *fp;            /* stream pointer */
30 <        COLOR   *scan;          /* input scanline */
30 >        COLOR   *scan[WINSIZ];  /* input scanline window */
31          COLOR   coef;           /* coefficient */
32   }       input[MAXINP];                  /* input pictures */
33  
# Line 31 | Line 35 | int    nfiles;                         /* number of input files */
35  
36   char    *vcolin[3] = {"ri", "gi", "bi"};
37   char    *vcolout[3] = {"ro", "go", "bo"};
38 + char    vbrtin[] = "li";
39 + char    vbrtout[] = "lo";
40 + char    *vcolcoef[3] = {"rc", "gc", "bc"};
41 + char    vbrtcoef[] = "lc";
42  
43 + #define vnfiles         "nfiles"
44 + #define vxres           "xres"
45 + #define vyres           "yres"
46   #define vxpos           "x"
47   #define vypos           "y"
48  
49   int     nowarn = 0;                     /* no warning messages? */
50  
51 + int     original = 0;                   /* origninal values? */
52 +
53   int     xres=0, yres=0;                 /* picture resolution */
54  
55   int     xpos, ypos;                     /* picture position */
56  
57 + int     wrongformat = 0;
58  
45 tputs(s)                        /* put out string preceded by a tab */
46 char    *s;
47 {
48        putchar('\t');
49        fputs(s, stdout);
50 }
59  
52
60   main(argc, argv)
61   int     argc;
62   char    *argv[];
63   {
57        extern double   l_redin(), l_grnin(), l_bluin(), atof();
64          double  f;
65 <        int     a;
66 <        
67 <        funset(vcolin[RED], 1, l_redin);
62 <        funset(vcolin[GRN], 1, l_grnin);
63 <        funset(vcolin[BLU], 1, l_bluin);
64 <        
65 <        for (a = 1; a < argc; a++)
65 >        int     a, i;
66 >                                                /* scan options */
67 >        for (a = 1; a < argc; a++) {
68                  if (argv[a][0] == '-')
69                          switch (argv[a][1]) {
68                        case '\0':
69                        case 's':
70                        case 'c':
71                                goto getfiles;
70                          case 'x':
71                                  xres = atoi(argv[++a]);
72 <                                break;
72 >                                continue;
73                          case 'y':
74                                  yres = atoi(argv[++a]);
75 <                                break;
75 >                                continue;
76                          case 'w':
77                                  nowarn = !nowarn;
78 <                                break;
78 >                                continue;
79 >                        case 'o':
80 >                                original = !original;
81 >                                continue;
82                          case 'f':
82                                fcompile(argv[++a]);
83                                break;
83                          case 'e':
84 <                                scompile(NULL, argv[++a]);
86 <                                break;
87 <                        default:
88 <                                goto usage;
84 >                                continue;
85                          }
86 <                else
87 <                        break;
88 < getfiles:
86 >                break;
87 >        }
88 >                                        /* process files */
89          for (nfiles = 0; nfiles < MAXINP; nfiles++)
90                  setcolor(input[nfiles].coef, 1.0, 1.0, 1.0);
91          nfiles = 0;
# Line 125 | Line 121 | getfiles:
121                                  quit(1);
122                          }
123                  }
124 <                fputs(input[nfiles].name, stdout);
124 >                nfiles++;
125 >        }
126 >        initfiles();            /* initialize files and variables */
127 >                                        /* go back and get expressions */
128 >        for (a = 1; a < argc; a++) {
129 >                if (argv[a][0] == '-')
130 >                        switch (argv[a][1]) {
131 >                        case 'x':
132 >                        case 'y':
133 >                        case 'w':
134 >                        case 'o':
135 >                                continue;
136 >                        case 'f':
137 >                                fcompile(argv[++a]);
138 >                                continue;
139 >                        case 'e':
140 >                                scompile(argv[++a], NULL, 0);
141 >                                continue;
142 >                        }
143 >                break;
144 >        }
145 >                                                /* complete header */
146 >        printargs(argc, argv, stdout);
147 >        fputformat(COLRFMT, stdout);
148 >        putchar('\n');
149 >        fputresolu(YMAJOR|YDECR, xres, yres, stdout);
150 >                                                /* combine pictures */
151 >        combine();
152 >        quit(0);
153 > usage:
154 >        eputs("Usage: ");
155 >        eputs(argv[0]);
156 >        eputs(
157 > " [-w][-h][-x xr][-y yr][-e expr][-f file] [ [-s f][-c r g b] pic ..]\n");
158 >        quit(1);
159 > }
160 >
161 >
162 > tputs(s)                        /* put out string preceded by a tab */
163 > char    *s;
164 > {
165 >        char    fmt[32];
166 >        double  d;
167 >        COLOR   ctmp;
168 >
169 >        if (isformat(s)) {                      /* check format */
170 >                formatval(fmt, s);
171 >                wrongformat = strcmp(fmt, COLRFMT);
172 >        } else if (original && isexpos(s)) {    /* exposure */
173 >                d = 1.0/exposval(s);
174 >                scalecolor(input[nfiles].coef, d);
175 >        } else if (original && iscolcor(s)) {   /* color correction */
176 >                colcorval(ctmp, s);
177 >                colval(input[nfiles].coef,RED) /= colval(ctmp,RED);
178 >                colval(input[nfiles].coef,GRN) /= colval(ctmp,GRN);
179 >                colval(input[nfiles].coef,BLU) /= colval(ctmp,BLU);
180 >        } else {                                /* echo unaffected line */
181 >                putchar('\t');
182 >                fputs(s, stdout);
183 >        }
184 >
185 > }
186 >
187 >
188 > initfiles()                     /* ready files and set variables */
189 > {
190 >        double  l_colin(), l_coef();
191 >        register int    n, i;
192 >                                        /* process picture headers */
193 >        for (n = 0; n < nfiles; n++) {
194 >                fputs(input[n].name, stdout);
195                  fputs(":\n", stdout);
196 <                getheader(input[nfiles].fp, tputs);
197 <                if (fgetresolu(&xpos, &ypos, input[nfiles].fp) !=
198 <                                (YMAJOR|YDECR)) {
199 <                        eputs(input[nfiles].name);
196 >                getheader(input[n].fp, tputs, NULL);
197 >                if (wrongformat) {
198 >                        eputs(input[n].name);
199 >                        eputs(": not in Radiance picture format\n");
200 >                        quit(1);
201 >                }
202 >                if (fgetresolu(&xpos, &ypos, input[n].fp) != (YMAJOR|YDECR)) {
203 >                        eputs(input[n].name);
204                          eputs(": bad picture size\n");
205                          quit(1);
206                  }
# Line 138 | Line 208 | getfiles:
208                          xres = xpos;
209                          yres = ypos;
210                  } else if (xpos != xres || ypos != yres) {
211 <                        eputs(argv[0]);
211 >                        eputs(input[n].name);
212                          eputs(": resolution mismatch\n");
213                          quit(1);
214                  }
215 <                input[nfiles].scan = (COLOR *)emalloc(xres*sizeof(COLOR));
216 <                nfiles++;
215 >                for (i = 0; i < WINSIZ; i++)
216 >                        input[n].scan[i] = (COLOR *)emalloc(xres*sizeof(COLOR));
217          }
218 <        printargs(argc, argv, stdout);
219 <        putchar('\n');
220 <        fputresolu(YMAJOR|YDECR, xres, yres, stdout);
221 <        combine();
222 <        quit(0);
223 < usage:
224 <        eputs("Usage: ");
225 <        eputs(argv[0]);
226 < eputs(" [-w][-x xr][-y yr][-e expr][-f file] [ [-s f][-c r g b] picture ..]\n");
227 <        quit(1);
218 >                                                /* prime input */
219 >        for (ypos = yres+(MIDSCN-1); ypos >= yres; ypos--)
220 >                advance();
221 >                                                /* define constants */
222 >        varset(vnfiles, ':', (double)nfiles);
223 >        varset(vxres, ':', (double)xres);
224 >        varset(vyres, ':', (double)yres);
225 >                                                /* set functions */
226 >        for (i = 0; i < 3; i++) {
227 >                funset(vcolcoef[i], 1, ':', l_coef);
228 >                funset(vcolin[i], 1, '=', l_colin);
229 >        }
230 >        funset(vbrtcoef, 1, ':', l_coef);
231 >        funset(vbrtin, 1, '=', l_colin);
232   }
233  
234  
235   combine()                       /* combine pictures */
236   {
237 <        EPNODE  *coldef[3];
237 >        EPNODE  *coldef[3], *brtdef;
238          COLOR   *scanout;
239 +        double  d;
240          register int    i, j;
241                                                  /* check defined variables */
242          for (j = 0; j < 3; j++) {
# Line 170 | Line 245 | combine()                      /* combine pictures */
245                  else
246                          coldef[j] = NULL;
247          }
248 +        if (vardefined(vbrtout))
249 +                brtdef = eparse(vbrtout);
250 +        else
251 +                brtdef = NULL;
252                                                  /* allocate scanline */
253          scanout = (COLOR *)emalloc(xres*sizeof(COLOR));
254                                                  /* combine files */
255          for (ypos = yres-1; ypos >= 0; ypos--) {
256 <                for (i = 0; i < nfiles; i++)
257 <                        if (freadscan(input[i].scan, xres, input[i].fp) < 0) {
258 <                                eputs(input[i].name);
259 <                                eputs(": read error\n");
260 <                                quit(1);
256 >            advance();
257 >            varset(vypos, '=', (double)ypos);
258 >            for (xpos = 0; xpos < xres; xpos++) {
259 >                varset(vxpos, '=', (double)xpos);
260 >                eclock++;
261 >                if (brtdef != NULL) {
262 >                    d = evalue(brtdef);
263 >                    if (d < 0.0)
264 >                        d = 0.0;
265 >                    setcolor(scanout[xpos], d, d, d);
266 >                } else {
267 >                    for (j = 0; j < 3; j++) {
268 >                        if (coldef[j] != NULL) {
269 >                                d = evalue(coldef[j]);
270 >                        } else {
271 >                            d = 0.0;
272 >                            for (i = 0; i < nfiles; i++)
273 >                                d += colval(input[i].scan[MIDSCN][xpos],j);
274                          }
275 <                varset(vypos, (double)ypos);
276 <                for (xpos = 0; xpos < xres; xpos++) {
277 <                        varset(vxpos, (double)xpos);
278 <                        eclock++;
187 <                        for (j = 0; j < 3; j++) {
188 <                                if (coldef[j] != NULL) {
189 <                                        colval(scanout[xpos],j) =
190 <                                                evalue(coldef[j]);
191 <                                } else {
192 <                                        colval(scanout[xpos],j) = 0.0;
193 <                                        for (i = 0; i < nfiles; i++)
194 <                                                colval(scanout[xpos],j) +=
195 <                                                colval(input[i].coef,j) *
196 <                                                colval(input[i].scan[xpos],j);
197 <                                }
198 <                                if (colval(scanout[xpos],j) < 0.0)
199 <                                        colval(scanout[xpos],j) = 0.0;
200 <                        }
275 >                        if (d < 0.0)
276 >                            d = 0.0;
277 >                        colval(scanout[xpos],j) = d;
278 >                    }
279                  }
280 <                if (fwritescan(scanout, xres, stdout) < 0) {
281 <                        perror("write error");
282 <                        quit(1);
283 <                }
280 >            }
281 >            if (fwritescan(scanout, xres, stdout) < 0) {
282 >                    perror("write error");
283 >                    quit(1);
284 >            }
285          }
286          efree(scanout);
287   }
288  
289  
290 < double
212 < colin(fn, ci)                   /* return color value for picture */
213 < register int    fn, ci;
290 > advance()                       /* read in next scanline */
291   {
292 <        if (fn == 0)
293 <                return((double)nfiles);
294 <        if (fn < 1 || fn > nfiles) {
295 <                errno = EDOM;
296 <                return(0.0);
292 >        register COLOR  *st;
293 >        register int    i, j;
294 >
295 >        for (i = 0; i < nfiles; i++) {
296 >                st = input[i].scan[WINSIZ-1];
297 >                for (j = WINSIZ-1; j > 0; j--)  /* rotate window */
298 >                        input[i].scan[j] = input[i].scan[j-1];
299 >                input[i].scan[0] = st;
300 >                if (ypos < MIDSCN)              /* hit bottom */
301 >                        continue;
302 >                if (freadscan(st, xres, input[i].fp) < 0) {
303 >                        eputs(input[i].name);
304 >                        eputs(": read error\n");
305 >                        quit(1);
306 >                }
307 >                for (j = 0; j < xres; j++)      /* adjust color */
308 >                        multcolor(st[j], input[i].coef);
309          }
221        return(colval(input[fn-1].scan[xpos],ci));
310   }
311  
312  
313   double
314 < l_redin()                       /* get red color */
314 > l_coef(nam)                     /* return picture coefficients */
315 > register char   *nam;
316   {
317 <        return(colin((int)(argument(1)+.5), RED));
318 < }
317 >        register int    fn, n;
318 >        double  d;
319  
320 <
321 < double
322 < l_grnin()                       /* get green color */
323 < {
324 <        return(colin((int)(argument(1)+.5), GRN));
320 >        fn = (d = argument(1)) - .5;
321 >        if (d <= -.5 || fn >= nfiles) {
322 >                errno = EDOM;
323 >                return(0.0);
324 >        }
325 >        if (d < .5)
326 >                return((double)nfiles);
327 >        if (nam == vbrtcoef)
328 >                return(bright(input[fn].coef));
329 >        n = 3;
330 >        while (n--)
331 >                if (nam == vcolcoef[n])
332 >                        return(colval(input[fn].coef,n));
333 >        eputs("Bad call to l_coef()!\n");
334 >        quit(1);
335   }
336  
337  
338   double
339 < l_bluin()                       /* get blue color */
339 > l_colin(nam)                    /* return color value for picture */
340 > register char   *nam;
341   {
342 <        return(colin((int)(argument(1)+.5), BLU));
342 >        int     fn;
343 >        register int    n, xoff, yoff;
344 >        double  d;
345 >
346 >        fn = (d = argument(1)) - .5;
347 >        if (d <= -.5 || fn >= nfiles) {
348 >                errno = EDOM;
349 >                return(0.0);
350 >        }
351 >        if (d < .5)
352 >                return((double)nfiles);
353 >        xoff = yoff = 0;
354 >        n = nargum();
355 >        if (n >= 2) {
356 >                d = argument(2);
357 >                if (d < 0.0) {
358 >                        xoff = d-.5;
359 >                        if (xpos+xoff < 0)
360 >                                xoff = -xpos;
361 >                } else {
362 >                        xoff = d+.5;
363 >                        if (xpos+xoff >= xres)
364 >                                xoff = xres-1-xpos;
365 >                }
366 >        }
367 >        if (n >= 3) {
368 >                d = argument(3);
369 >                if (d < 0.0) {
370 >                        yoff = d-.5;
371 >                        if (yoff+MIDSCN < 0)
372 >                                yoff = -MIDSCN;
373 >                        if (ypos+yoff < 0)
374 >                                yoff = -ypos;
375 >                } else {
376 >                        yoff = d+.5;
377 >                        if (yoff+MIDSCN >= WINSIZ)
378 >                                yoff = WINSIZ-1-MIDSCN;
379 >                        if (ypos+yoff >= yres)
380 >                                yoff = yres-1-ypos;
381 >                }
382 >        }
383 >        if (nam == vbrtin)
384 >                return(bright(input[fn].scan[MIDSCN+yoff][xpos+xoff]));
385 >        n = 3;
386 >        while (n--)
387 >            if (nam == vcolin[n])
388 >                return(colval(input[fn].scan[MIDSCN+yoff][xpos+xoff],n));
389 >        eputs("Bad call to l_colin()!\n");
390 >        quit(1);
391   }
392  
393  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines