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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines