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.2 by greg, Tue May 9 10:07:04 1989 UTC vs.
Revision 1.23 by greg, Mon Nov 11 14:01:24 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 16 | Line 16 | static char SCCSid[] = "$SunId$ LBL";
16  
17   #include "color.h"
18  
19 + #include  "resolu.h"
20 +
21   #include "calcomp.h"
22  
23 < #define MAXINP          16              /* maximum number of input files */
23 > #define MAXINP          32              /* maximum number of input files */
24 > #define WINSIZ          9               /* scanline window size */
25 > #define MIDSCN          4               /* current scan position */
26  
27   struct {
28 <        char    *name;          /* file name */
28 >        char    *name;          /* file or command name */
29          FILE    *fp;            /* stream pointer */
30 <        COLOR   *scan;          /* input scanline */
30 >        COLOR   *scan[WINSIZ];  /* input scanline window */
31 >        COLOR   coef;           /* coefficient */
32 >        COLOR   expos;          /* recorded exposure */
33   }       input[MAXINP];                  /* input pictures */
34  
35   int     nfiles;                         /* number of input files */
36  
37 < char    *vcolin[3] = {"ri", "gi", "bi"};
38 < char    *vcolout[3] = {"ro", "go", "bo"};
37 > char    vcolin[3][4] = {"ri", "gi", "bi"};
38 > char    vcolout[3][4] = {"ro", "go", "bo"};
39 > char    vbrtin[] = "li";
40 > char    vbrtout[] = "lo";
41 > char    vcolexp[3][4] = {"re", "ge", "be"};
42 > char    vbrtexp[] = "le";
43  
44 < #define vxpos           "x"
45 < #define vypos           "y"
44 > char    vnfiles[] = "nfiles";
45 > char    vxmax[] = "xmax";
46 > char    vymax[] = "ymax";
47 > char    vxres[] = "xres";
48 > char    vyres[] = "yres";
49 > char    vxpos[] = "x";
50 > char    vypos[] = "y";
51  
52   int     nowarn = 0;                     /* no warning messages? */
53  
54 < int     xres=0, yres=0;                 /* picture resolution */
54 > int     xmax = 0, ymax = 0;             /* input resolution */
55  
56 < int     xpos, ypos;                     /* picture position */
56 > int     xscan, yscan;                   /* input position */
57  
58 + int     xres, yres;                     /* output resolution */
59  
60 < tputs(s)                        /* put out string preceded by a tab */
45 < char    *s;
46 < {
47 <        putchar('\t');
48 <        fputs(s, stdout);
49 < }
60 > int     xpos, ypos;                     /* output position */
61  
62 + int     wrongformat = 0;
63  
64 + FILE    *popen();
65 +
66 +
67   main(argc, argv)
68   int     argc;
69   char    *argv[];
70   {
71 <        extern double   l_redin(), l_grnin(), l_bluin();
72 <        int     a;
73 <        
74 <        funset(vcolin[RED], 1, l_redin);
75 <        funset(vcolin[GRN], 1, l_grnin);
61 <        funset(vcolin[BLU], 1, l_bluin);
62 <        
63 <        for (a = 1; a < argc; a++)
71 >        int     original;
72 >        double  f;
73 >        int     a, i;
74 >                                                /* scan options */
75 >        for (a = 1; a < argc; a++) {
76                  if (argv[a][0] == '-')
77                          switch (argv[a][1]) {
66                        case '\0':
67                                goto getfiles;
78                          case 'x':
69                                xres = atoi(argv[++a]);
70                                break;
79                          case 'y':
80 <                                yres = atoi(argv[++a]);
81 <                                break;
80 >                                a++;
81 >                                continue;
82                          case 'w':
83                                  nowarn = !nowarn;
84 <                                break;
84 >                                continue;
85                          case 'f':
78                                fcompile(argv[++a]);
79                                break;
86                          case 'e':
87 <                                scompile(NULL, argv[++a]);
88 <                                break;
83 <                        default:
84 <                                eputs("Usage: ");
85 <                                eputs(argv[0]);
86 <        eputs(" [-w][-x xres][-y yres][-e expr][-f file] [picture ..]\n");
87 <                                quit(1);
87 >                                a++;
88 >                                continue;
89                          }
90 <                else
91 <                        break;
92 < getfiles:
90 >                break;
91 >        }
92 >                                        /* process files */
93 >        for (nfiles = 0; nfiles < MAXINP; nfiles++) {
94 >                setcolor(input[nfiles].coef, 1.0, 1.0, 1.0);
95 >                setcolor(input[nfiles].expos, 1.0, 1.0, 1.0);
96 >        }
97          nfiles = 0;
98 +        original = 0;
99          for ( ; a < argc; a++) {
100                  if (nfiles >= MAXINP) {
101                          eputs(argv[0]);
102                          eputs(": too many picture files\n");
103                          quit(1);
104                  }
105 <                if (argv[a][0] == '-') {
106 <                        input[nfiles].name = "<stdin>";
107 <                        input[nfiles].fp = stdin;
108 <                } else {
105 >                if (argv[a][0] == '-')
106 >                        switch (argv[a][1]) {
107 >                        case '\0':
108 >                                input[nfiles].name = "<stdin>";
109 >                                input[nfiles].fp = stdin;
110 >                                break;
111 >                        case 'o':
112 >                                original++;
113 >                                continue;
114 >                        case 's':
115 >                                f = atof(argv[++a]);
116 >                                scalecolor(input[nfiles].coef, f);
117 >                                continue;
118 >                        case 'c':
119 >                                colval(input[nfiles].coef,RED)*=atof(argv[++a]);
120 >                                colval(input[nfiles].coef,GRN)*=atof(argv[++a]);
121 >                                colval(input[nfiles].coef,BLU)*=atof(argv[++a]);
122 >                                continue;
123 >                        default:
124 >                                goto usage;
125 >                        }
126 >                else {
127                          input[nfiles].name = argv[a];
128 <                        input[nfiles].fp = fopen(argv[a], "r");
128 >                        input[nfiles].fp = argv[a][0]=='!' ?
129 >                                        popen(argv[a]+1, "r") :
130 >                                        fopen(argv[a], "r");
131                          if (input[nfiles].fp == NULL) {
132 <                                eputs(argv[a]);
107 <                                eputs(": cannot open\n");
132 >                                perror(argv[a]);
133                                  quit(1);
134                          }
135                  }
136 <                fputs(input[nfiles].name, stdout);
137 <                fputs(":\n", stdout);
138 <                getheader(input[nfiles].fp, tputs);
139 <                if (fscanf(input[nfiles].fp, "-Y %d +X %d\n", &ypos, &xpos) != 2) {
140 <                        eputs(input[nfiles].name);
141 <                        eputs(": bad picture size\n");
142 <                        quit(1);
136 >                checkfile();
137 >                if (original) {
138 >                        colval(input[nfiles].coef,RED) /=
139 >                                        colval(input[nfiles].expos,RED);
140 >                        colval(input[nfiles].coef,GRN) /=
141 >                                        colval(input[nfiles].expos,GRN);
142 >                        colval(input[nfiles].coef,BLU) /=
143 >                                        colval(input[nfiles].expos,BLU);
144                  }
119                if (xres == 0 && yres == 0) {
120                        xres = xpos;
121                        yres = ypos;
122                } else if (xpos != xres || ypos != yres) {
123                        eputs(argv[0]);
124                        eputs(": resolution mismatch\n");
125                        quit(1);
126                }
127                input[nfiles].scan = (COLOR *)emalloc(xres*sizeof(COLOR));
145                  nfiles++;
146 +                original = 0;
147          }
148 +        init();                         /* set constants */
149 +                                        /* go back and get expressions */
150 +        for (a = 1; a < argc; a++) {
151 +                if (argv[a][0] == '-')
152 +                        switch (argv[a][1]) {
153 +                        case 'x':
154 +                                varset(vxres, ':', eval(argv[++a]));
155 +                                continue;
156 +                        case 'y':
157 +                                varset(vyres, ':', eval(argv[++a]));
158 +                                continue;
159 +                        case 'w':
160 +                                continue;
161 +                        case 'f':
162 +                                fcompile(argv[++a]);
163 +                                continue;
164 +                        case 'e':
165 +                                scompile(argv[++a], NULL, 0);
166 +                                continue;
167 +                        }
168 +                break;
169 +        }
170 +                                                /* set/get output resolution */
171 +        if (!vardefined(vxres))
172 +                varset(vxres, ':', (double)xmax);
173 +        if (!vardefined(vyres))
174 +                varset(vyres, ':', (double)ymax);
175 +        xres = varvalue(vxres) + .5;
176 +        yres = varvalue(vyres) + .5;
177 +        if (xres <= 0 || yres <= 0) {
178 +                eputs(argv[0]);
179 +                eputs(": illegal output resolution\n");
180 +                quit(1);
181 +        }
182 +                                                /* complete header */
183          printargs(argc, argv, stdout);
184 +        fputformat(COLRFMT, stdout);
185          putchar('\n');
186 <        printf("-Y %d +X %d\n", yres, xres);
186 >        fprtresolu(xres, yres, stdout);
187 >                                                /* combine pictures */
188          combine();
189          quit(0);
190 + usage:
191 +        eputs("Usage: ");
192 +        eputs(argv[0]);
193 +        eputs(
194 + " [-w][-x xr][-y yr][-e expr][-f file] [ [-s f][-c r g b] pic ..]\n");
195 +        quit(1);
196   }
197  
198  
199 + tputs(s)                        /* put out string preceded by a tab */
200 + char    *s;
201 + {
202 +        char    fmt[32];
203 +        double  d;
204 +        COLOR   ctmp;
205 +
206 +        if (isformat(s)) {                      /* check format */
207 +                formatval(fmt, s);
208 +                wrongformat = strcmp(fmt, COLRFMT);
209 +                return;         /* don't echo */
210 +        }
211 +        if (isexpos(s)) {                       /* exposure */
212 +                d = exposval(s);
213 +                scalecolor(input[nfiles].expos, d);
214 +        } else if (iscolcor(s)) {               /* color correction */
215 +                colcorval(ctmp, s);
216 +                multcolor(input[nfiles].expos, ctmp);
217 +        }
218 +                                                /* echo line */
219 +        putchar('\t');
220 +        fputs(s, stdout);
221 + }
222 +
223 +
224 + checkfile()                     /* ready a file */
225 + {
226 +        int     xinp, yinp;
227 +        register int    i;
228 +                                        /* process header */
229 +        fputs(input[nfiles].name, stdout);
230 +        fputs(":\n", stdout);
231 +        getheader(input[nfiles].fp, tputs, NULL);
232 +        if (wrongformat) {
233 +                eputs(input[nfiles].name);
234 +                eputs(": not in Radiance picture format\n");
235 +                quit(1);
236 +        }
237 +        if (fgetresolu(&xinp, &yinp, input[nfiles].fp) < 0) {
238 +                eputs(input[nfiles].name);
239 +                eputs(": bad picture size\n");
240 +                quit(1);
241 +        }
242 +        if (xmax == 0 && ymax == 0) {
243 +                xmax = xinp;
244 +                ymax = yinp;
245 +        } else if (xinp != xmax || yinp != ymax) {
246 +                eputs(input[nfiles].name);
247 +                eputs(": resolution mismatch\n");
248 +                quit(1);
249 +        }
250 +                                        /* allocate scanlines */
251 +        for (i = 0; i < WINSIZ; i++)
252 +                input[nfiles].scan[i] = (COLOR *)emalloc(xmax*sizeof(COLOR));
253 + }
254 +
255 +
256 + init()                                  /* perform final setup */
257 + {
258 +        double  l_colin(), l_expos();
259 +        register int    i;
260 +                                                /* define constants */
261 +        varset(vnfiles, ':', (double)nfiles);
262 +        varset(vxmax, ':', (double)xmax);
263 +        varset(vymax, ':', (double)ymax);
264 +                                                /* set functions */
265 +        for (i = 0; i < 3; i++) {
266 +                funset(vcolexp[i], 1, ':', l_expos);
267 +                funset(vcolin[i], 1, '=', l_colin);
268 +        }
269 +        funset(vbrtexp, 1, ':', l_expos);
270 +        funset(vbrtin, 1, '=', l_colin);
271 + }
272 +
273 +
274   combine()                       /* combine pictures */
275   {
276 <        int     coldef[3];
276 >        EPNODE  *coldef[3], *brtdef;
277          COLOR   *scanout;
278 +        double  d;
279          register int    i, j;
280                                                  /* check defined variables */
281 <        for (j = 0; j < 3; j++)
282 <                coldef[j] = vardefined(vcolout[j]);
281 >        for (j = 0; j < 3; j++) {
282 >                if (vardefined(vcolout[j]))
283 >                        coldef[j] = eparse(vcolout[j]);
284 >                else
285 >                        coldef[j] = NULL;
286 >        }
287 >        if (vardefined(vbrtout))
288 >                brtdef = eparse(vbrtout);
289 >        else
290 >                brtdef = NULL;
291                                                  /* allocate scanline */
292          scanout = (COLOR *)emalloc(xres*sizeof(COLOR));
293 +                                                /* set input position */
294 +        yscan = ymax+MIDSCN;
295                                                  /* combine files */
296          for (ypos = yres-1; ypos >= 0; ypos--) {
297 <                for (i = 0; i < nfiles; i++)
298 <                        if (freadscan(input[i].scan, xres, input[i].fp) < 0) {
299 <                                eputs(input[i].name);
300 <                                eputs(": read error\n");
301 <                                quit(1);
297 >            advance();
298 >            varset(vypos, '=', (double)ypos);
299 >            for (xpos = 0; xpos < xres; xpos++) {
300 >                xscan = (long)xpos*xmax/xres;
301 >                varset(vxpos, '=', (double)xpos);
302 >                eclock++;
303 >                if (brtdef != NULL) {
304 >                    d = evalue(brtdef);
305 >                    if (d < 0.0)
306 >                        d = 0.0;
307 >                    setcolor(scanout[xpos], d, d, d);
308 >                } else {
309 >                    for (j = 0; j < 3; j++) {
310 >                        if (coldef[j] != NULL) {
311 >                                d = evalue(coldef[j]);
312 >                        } else {
313 >                            d = 0.0;
314 >                            for (i = 0; i < nfiles; i++)
315 >                                d += colval(input[i].scan[MIDSCN][xscan],j);
316                          }
317 <                varset(vypos, (double)ypos);
318 <                for (xpos = 0; xpos < xres; xpos++) {
319 <                        varset(vxpos, (double)xpos);
320 <                        eclock++;
160 <                        for (j = 0; j < 3; j++)
161 <                                if (coldef[j]) {
162 <                                        colval(scanout[xpos],j) = varvalue(vcolout[j]);
163 <                                        if (colval(scanout[xpos],j) < 0.0)
164 <                                                colval(scanout[xpos],j) = 0.0;
165 <                                } else {
166 <                                        colval(scanout[xpos],j) = 0.0;
167 <                                        for (i = 0; i < nfiles; i++)
168 <                                                colval(scanout[xpos],j) += colval(input[i].scan[xpos],j);
169 <                                }
317 >                        if (d < 0.0)
318 >                            d = 0.0;
319 >                        colval(scanout[xpos],j) = d;
320 >                    }
321                  }
322 <                if (fwritescan(scanout, xres, stdout) < 0) {
323 <                        eputs("write error\n");
324 <                        quit(1);
325 <                }
322 >            }
323 >            if (fwritescan(scanout, xres, stdout) < 0) {
324 >                    perror("write error");
325 >                    quit(1);
326 >            }
327          }
328          efree(scanout);
329   }
330  
331  
332 < double
181 < colin(fn, ci)                   /* return color value for picture */
182 < register int    fn, ci;
332 > advance()                       /* read in data for next scanline */
333   {
334 <        if (fn == 0)
335 <                return((double)nfiles);
336 <        if (fn < 1 || fn > nfiles) {
187 <                errno = EDOM;
188 <                return(0.0);
189 <        }
190 <        return(colval(input[fn-1].scan[xpos],ci));
191 < }
334 >        int     ytarget;
335 >        register COLOR  *st;
336 >        register int    i, j;
337  
338 <
339 < double
340 < l_redin()                       /* get red color */
341 < {
342 <        return(colin((int)(argument(1)+.5), RED));
338 >        for (ytarget = (long)ypos*ymax/yres; yscan > ytarget; yscan--)
339 >                for (i = 0; i < nfiles; i++) {
340 >                        st = input[i].scan[WINSIZ-1];
341 >                        for (j = WINSIZ-1; j > 0; j--)  /* rotate window */
342 >                                input[i].scan[j] = input[i].scan[j-1];
343 >                        input[i].scan[0] = st;
344 >                        if (yscan <= MIDSCN)            /* hit bottom? */
345 >                                continue;
346 >                        if (freadscan(st, xmax, input[i].fp) < 0) {     /* read */
347 >                                eputs(input[i].name);
348 >                                eputs(": read error\n");
349 >                                quit(1);
350 >                        }
351 >                        for (j = 0; j < xmax; j++)      /* adjust color */
352 >                                multcolor(st[j], input[i].coef);
353 >                }
354   }
355  
356  
357   double
358 < l_grnin()                       /* get green color */
358 > l_expos(nam)                    /* return picture exposure */
359 > register char   *nam;
360   {
361 <        return(colin((int)(argument(1)+.5), GRN));
361 >        register int    fn, n;
362 >
363 >        fn = argument(1) - .5;
364 >        if (fn < 0 || fn >= nfiles)
365 >                return(1.0);
366 >        if (nam == vbrtexp)
367 >                return(bright(input[fn].expos));
368 >        n = 3;
369 >        while (n--)
370 >                if (nam == vcolexp[n])
371 >                        return(colval(input[fn].expos,n));
372 >        eputs("Bad call to l_expos()!\n");
373 >        quit(1);
374   }
375  
376  
377   double
378 < l_bluin()                       /* get blue color */
378 > l_colin(nam)                    /* return color value for picture */
379 > register char   *nam;
380   {
381 <        return(colin((int)(argument(1)+.5), BLU));
381 >        int     fn;
382 >        register int    n, xoff, yoff;
383 >        double  d;
384 >
385 >        d = argument(1);
386 >        if (d > -.5 && d < .5)
387 >                return((double)nfiles);
388 >        fn = d - .5;
389 >        if (fn < 0 || fn >= nfiles) {
390 >                errno = EDOM;
391 >                return(0.0);
392 >        }
393 >        xoff = yoff = 0;
394 >        n = nargum();
395 >        if (n >= 2) {
396 >                d = argument(2);
397 >                if (d < 0.0) {
398 >                        xoff = d-.5;
399 >                        if (xscan+xoff < 0)
400 >                                xoff = -xscan;
401 >                } else {
402 >                        xoff = d+.5;
403 >                        if (xscan+xoff >= xmax)
404 >                                xoff = xmax-1-xscan;
405 >                }
406 >        }
407 >        if (n >= 3) {
408 >                d = argument(3);
409 >                if (d < 0.0) {
410 >                        yoff = d-.5;
411 >                        if (yoff+MIDSCN < 0)
412 >                                yoff = -MIDSCN;
413 >                        if (yscan+yoff < 0)
414 >                                yoff = -yscan;
415 >                } else {
416 >                        yoff = d+.5;
417 >                        if (yoff+MIDSCN >= WINSIZ)
418 >                                yoff = WINSIZ-1-MIDSCN;
419 >                        if (yscan+yoff >= ymax)
420 >                                yoff = ymax-1-yscan;
421 >                }
422 >        }
423 >        if (nam == vbrtin)
424 >                return(bright(input[fn].scan[MIDSCN+yoff][xscan+xoff]));
425 >        n = 3;
426 >        while (n--)
427 >            if (nam == vcolin[n])
428 >                return(colval(input[fn].scan[MIDSCN+yoff][xscan+xoff],n));
429 >        eputs("Bad call to l_colin()!\n");
430 >        quit(1);
431   }
432  
433  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines