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 2.47 by greg, Fri Jan 12 00:50:17 2018 UTC vs.
Revision 2.58 by greg, Mon Dec 11 15:13:39 2023 UTC

# Line 23 | Line 23 | struct {
23          FILE    *fp;            /* stream pointer */
24          VIEW    vw;             /* view for picture */
25          RESOLU  rs;             /* image resolution and orientation */
26 +        int     infloat;        /* input is floating point (#comp)? */
27          float   pa;             /* pixel aspect ratio */
28          COLOR   *scan[WINSIZ];  /* input scanline window */
29          COLOR   coef;           /* coefficient */
# Line 31 | Line 32 | struct {
32  
33   int     nfiles;                         /* number of input files */
34  
35 < char    ourfmt[LPICFMT+1] = PICFMT;     /* input picture format */
35 > VIEW    *commvp = NULL;                 /* common view parameters */
36  
37 + char    ourfmt[MAXFMTLEN] = PICFMT;     /* input picture format */
38 + int     outfloat = 0;                   /* #component float output? */
39 +
40   char    StandardInput[] = "<stdin>";
41   char    Command[] = "<Command>";
42   char    vcolin[3][4] = {"ri", "gi", "bi"};
# Line 74 | Line 78 | int    gotview;
78  
79  
80   static gethfunc headline;
81 < static void checkfile(void);
81 > static void checkfile(int orig);
82   static double rgb_bright(COLOR  clr);
83   static double xyz_bright(COLOR  clr);
84   static void init(void);
# Line 118 | Line 122 | main(
122                                  echoheader = !echoheader;
123                                  continue;
124                          case 'f':
125 +                                if (argv[a][2]) {
126 +                                        outfloat = (argv[a][2] == 'f');
127 +                                        continue;
128 +                                }
129 +                                /* fall through */
130                          case 'e':
131                                  a++;
132                                  continue;
# Line 175 | Line 184 | main(
184                                  quit(1);
185                          }
186                  }
187 <                checkfile();
179 <                if (original) {
180 <                        colval(input[nfiles].coef,RED) /=
181 <                                        colval(input[nfiles].expos,RED);
182 <                        colval(input[nfiles].coef,GRN) /=
183 <                                        colval(input[nfiles].expos,GRN);
184 <                        colval(input[nfiles].coef,BLU) /=
185 <                                        colval(input[nfiles].expos,BLU);
186 <                        setcolor(input[nfiles].expos, 1.0, 1.0, 1.0);
187 <                }
187 >                checkfile(original);
188                  nfiles++;
189                  original = 0;
190          }
191          init();                         /* set constants */
192                                          /* go back and get expressions */
193          for (a = 1; a < argc; a++) {
194 +                char    *fpath;
195                  if (argv[a][0] == '-')
196                          switch (argv[a][1]) {
197                          case 'x':
# Line 204 | Line 205 | main(
205                          case 'h':
206                                  continue;
207                          case 'f':
208 <                                fcompile(argv[++a]);
208 >                                if (argv[a][2])
209 >                                        continue;
210 >                                fpath = getpath(argv[++a], getrlibpath(), 0);
211 >                                if (fpath == NULL) {
212 >                                        eputs(argv[0]);
213 >                                        eputs(": cannot find file '");
214 >                                        eputs(argv[a]);
215 >                                        eputs("'\n");
216 >                                        quit(1);
217 >                                }
218 >                                fcompile(fpath);
219                                  continue;
220                          case 'e':
221                                  scompile(argv[++a], NULL, 0);
# Line 212 | Line 223 | main(
223                          }
224                  break;
225          }
226 <                                                /* set/get output resolution */
216 <        if (!vardefined(vxres))
217 <                varset(vxres, ':', (double)xmax);
218 <        if (!vardefined(vyres))
219 <                varset(vyres, ':', (double)ymax);
226 >                                                /* get output resolution */
227          xres = varvalue(vxres) + .5;
228          yres = varvalue(vyres) + .5;
229          if (xres <= 0 || yres <= 0) {
# Line 224 | Line 231 | main(
231                  eputs(": illegal output resolution\n");
232                  quit(1);
233          }
234 <                                                /* complete header */
235 <        printargs(argc, argv, stdout);
236 <        if (strcmp(ourfmt, PICFMT))
237 <                fputformat(ourfmt, stdout);     /* print format if known */
238 <        putchar('\n');
239 <        fprtresolu(xres, yres, stdout);
240 <                                                /* combine pictures */
241 <        combine();
234 >        if (!vardefined(vbrtout))               /* single or 3-channel? */
235 >                outfloat *= 3;
236 >
237 >        printargs(argc, argv, stdout);          /* complete header */
238 >        if (commvp != NULL) {
239 >                fputs(VIEWSTR, stdout);
240 >                fprintview(commvp, stdout);
241 >                fputc('\n', stdout);
242 >        }
243 >        if (outfloat) {                         /* print format if known */
244 >                printf("NROWS=%d\nNCOLS=%d\n", yres, xres);
245 >                fputncomp(outfloat, stdout);
246 >                fputendian(stdout);
247 >                fputformat("float", stdout);
248 >        } else if (strcmp(ourfmt, PICFMT))
249 >                fputformat(ourfmt, stdout);
250 >        fputc('\n', stdout);                    /* end header */
251 >        if (!outfloat)
252 >                fprtresolu(xres, yres, stdout);
253 >
254 >        combine();                              /* combine pictures */
255          quit(0);
256   usage:
257          eputs("Usage: ");
258          eputs(argv[0]);
259          eputs(
260 < " [-w][-h][-x xr][-y yr][-e expr][-f file] [ [-o][-s f][-c r g b] hdr ..]\n");
260 > " [-w][-h][-ff][-x xr][-y yr][-e expr][-f file] [ [-o][-s f][-c r g b] hdr ..]\n");
261          quit(1);
262          return 1; /* pro forma return */
263   }
# Line 249 | Line 269 | headline(                      /* check header line & echo if requested *
269          void    *p
270   )
271   {
272 <        char    fmt[32];
272 >        int     orig = *(int *)p;
273 >        char    fmt[MAXFMTLEN];
274          double  d;
275 +        int     bigend;
276          COLOR   ctmp;
277  
278          if (isheadid(s))                        /* header id */
# Line 259 | Line 281 | headline(                      /* check header line & echo if requested *
281                  if (globmatch(ourfmt, fmt)) {
282                          wrongformat = 0;
283                          strcpy(ourfmt, fmt);
284 <                } else
284 >                } else if (!strcmp("float", fmt))
285 >                        input[nfiles].infloat *= -1;
286 >                else
287                          wrongformat = globmatch(PICFMT, fmt) ? 1 : -1;
288                  return(0);      /* don't echo */
289          }
290 <        if (isexpos(s)) {                       /* exposure */
290 >        if ((bigend = isbigendian(s)) >= 0) {
291 >                if (bigend != nativebigendian()) {
292 >                        eputs(input[nfiles].name);
293 >                        eputs(": unsupported input byte ordering\n");
294 >                        quit(1);
295 >                }
296 >                return(0);      /* don't echo */
297 >        }
298 >        if (!strncmp("NROWS=", s, 6)) {         /* X-resolution */
299 >                input[nfiles].rs.yr = atoi(s+6);
300 >                return(0);      /* don't echo */
301 >        }
302 >        if (!strncmp("NCOLS=", s, 6)) {         /* Y-resolution */
303 >                input[nfiles].rs.xr = atoi(s+6);
304 >                return(0);      /* don't echo */
305 >        }
306 >        if (isncomp(s))                         /* # components */
307 >                input[nfiles].infloat *= ncompval(s);
308 >
309 >        if (orig) {                             /* undo exposure? */
310 >                if (isexpos(s)) {
311 >                        d = 1./exposval(s);
312 >                        scalecolor(input[nfiles].coef, d);
313 >                        return(0);      /* don't echo */
314 >                }
315 >                if (iscolcor(s)) {
316 >                        int     i;
317 >                        colcorval(ctmp, s);
318 >                        for (i = 3; i--; )
319 >                                colval(input[nfiles].coef,i) /= colval(ctmp,i);
320 >                        return(0);      /* don't echo */
321 >                }
322 >        } else if (isexpos(s)) {                /* record exposure? */
323                  d = exposval(s);
324                  scalecolor(input[nfiles].expos, d);
325 <        } else if (iscolcor(s)) {               /* color correction */
325 >        } else if (iscolcor(s)) {
326                  colcorval(ctmp, s);
327                  multcolor(input[nfiles].expos, ctmp);
328 <        } else if (isaspect(s))
328 >        }
329 >        if (isaspect(s))
330                  input[nfiles].pa *= aspectval(s);
331          else if (isview(s) && sscanview(&input[nfiles].vw, s) > 0)
332                  gotview++;
# Line 283 | Line 340 | headline(                      /* check header line & echo if requested *
340  
341  
342   static void
343 < checkfile(void)                 /* ready a file */
343 > checkfile(int orig)                     /* ready a file */
344   {
345          int     i;
346                                          /* process header */
347          gotview = 0;
348 +        input[nfiles].infloat = -1;
349 +        input[nfiles].rs.rt = PIXSTANDARD;
350 +        input[nfiles].rs.xr = input[nfiles].rs.yr = 0;
351          if (echoheader) {
352                  fputs(input[nfiles].name, stdout);
353                  fputs(":\n", stdout);
354          }
355 <        getheader(input[nfiles].fp, headline, NULL);
355 >        getheader(input[nfiles].fp, headline, &orig);
356 >
357 >        if (input[nfiles].infloat <= 0)
358 >                input[nfiles].infloat = 0;
359 >        else if ((input[nfiles].infloat != 3) &
360 >                                (input[nfiles].infloat != 1)) {
361 >                eputs(input[nfiles].name);
362 >                eputs(": unsupported number of components\n");
363 >                quit(1);
364 >        }
365          if (wrongformat < 0) {
366                  eputs(input[nfiles].name);
367 <                eputs(": not a Radiance picture\n");
367 >                eputs(": not a Radiance picture or float matrix\n");
368                  quit(1);
369          }
370          if (wrongformat > 0) {
# Line 304 | Line 373 | checkfile(void)                        /* ready a file */
373          }
374          if (!gotview || setview(&input[nfiles].vw) != NULL)
375                  input[nfiles].vw.type = 0;
376 <        if (!fgetsresolu(&input[nfiles].rs, input[nfiles].fp)) {
376 >        else if (commvp == NULL)
377 >                commvp = &input[nfiles].vw;
378 >        if ((input[nfiles].rs.xr <= 0) | (input[nfiles].rs.yr <= 0) &&
379 >                        !fgetsresolu(&input[nfiles].rs, input[nfiles].fp)) {
380                  eputs(input[nfiles].name);
381                  eputs(": bad picture size\n");
382                  quit(1);
# Line 371 | Line 443 | init(void)                                     /* perform final setup */
443                  ourbright = xyz_bright;
444          } else
445                  varset(vwhteff, ':', WHTEFFICACY);
446 +                                                /* these may be overridden */
447 +        varset(vxres, ':', (double)xmax);
448 +        varset(vyres, ':', (double)ymax);
449   }
450  
451  
# Line 378 | Line 453 | static void
453   combine(void)                   /* combine pictures */
454   {
455          EPNODE  *coldef[3], *brtdef;
456 +        int     set_x, set_y;
457          COLOR   *scanout;
458          double  d;
459          int     i, j;
# Line 392 | Line 468 | combine(void)                  /* combine pictures */
468                  brtdef = eparse(vbrtout);
469          else
470                  brtdef = NULL;
471 +                                                /* what to set */
472 +        set_x = varlookup(vxpos) != NULL && !vardefined(vxpos);
473 +        set_y = varlookup(vypos) != NULL && !vardefined(vypos);
474                                                  /* allocate scanline */
475          scanout = (COLOR *)emalloc(xres*sizeof(COLOR));
476                                                  /* set input position */
# Line 399 | Line 478 | combine(void)                  /* combine pictures */
478                                                  /* combine files */
479          for (ypos = yres-1; ypos >= 0; ypos--) {
480              advance();
481 <            varset(vypos, '=', (double)ypos);
481 >            if (set_y) varset(vypos, '=', (double)ypos);
482              for (xpos = 0; xpos < xres; xpos++) {
483                  xscan = (xpos+.5)*xmax/xres;
484 <                varset(vxpos, '=', (double)xpos);
484 >                if (set_x) varset(vxpos, '=', (double)xpos);
485                  eclock++;
486                  if (brtdef != NULL) {
487                      d = evalue(brtdef);
488 <                    if (d < 0.0)
410 <                        d = 0.0;
488 >                    d *= (outfloat > 0) | (d >= 0);
489                      setcolor(scanout[xpos], d, d, d);
490                  } else {
491                      for (j = 0; j < 3; j++) {
# Line 418 | Line 496 | combine(void)                  /* combine pictures */
496                              for (i = 0; i < nfiles; i++)
497                                  d += colval(input[i].scan[MIDSCN][xscan],j);
498                          }
499 <                        if (d < 0.0)
422 <                            d = 0.0;
499 >                        d *= (outfloat > 0) | (d >= 0);
500                          colval(scanout[xpos],j) = d;
501                      }
502                  }
503              }
504 <            if (fwritescan(scanout, xres, stdout) < 0) {
505 <                    perror("write error");
506 <                    quit(1);
504 >            switch (outfloat) {
505 >            case 3:                     /* writing out float triplets */
506 >                if (fwrite(scanout, sizeof(float)*3, xres, stdout) != xres)
507 >                    goto writerr;
508 >                break;
509 >            case 1:                     /* writing out gray float values */
510 >                for (xpos = 0; xpos < xres; xpos++)
511 >                    if (putbinary(&scanout[xpos][CIEY],
512 >                                sizeof(float), 1, stdout) != 1)
513 >                        goto writerr;
514 >                break;
515 >            default:                    /* writing out Radiance picture */
516 >                if (fwritescan(scanout, xres, stdout) < 0)
517 >                    goto writerr;
518 >                break;
519              }
520          }
521          efree((char *)scanout);
522 +        return;
523 + writerr:
524 +    perror("write error");
525 +    quit(1);
526   }
527  
528  
# Line 448 | Line 541 | advance(void)                  /* read in data for next scanline */
541                          input[i].scan[0] = st;
542                          if (yscan <= MIDSCN)            /* hit bottom? */
543                                  continue;
544 <                        if (freadscan(st, xmax, input[i].fp) < 0) {  /* read */
545 <                                eputs(input[i].name);
546 <                                eputs(": read error\n");
547 <                                quit(1);
548 <                        }
544 >                                                         /* read scanline */
545 >                        if (input[i].infloat) {
546 >                                if (fread(st, sizeof(float)*input[i].infloat,
547 >                                                xmax, input[i].fp) != xmax)
548 >                                        goto readerr;
549 >                                if (input[i].infloat == 1) {
550 >                                        const COLORV    *f = st[0] + xmax;
551 >                                        int             x = xmax;
552 >                                        while (x-- > 0)
553 >                                                st[x][BLU] = st[x][GRN] =
554 >                                                        st[x][RED] = *--f;
555 >                                }
556 >                        } else if (freadscan(st, xmax, input[i].fp) < 0)
557 >                                goto readerr;
558                          for (j = 0; j < xmax; j++)      /* adjust color */
559                                  multcolor(st[j], input[i].coef);
560                  }
561 +        return;
562 + readerr:
563 +        eputs(input[i].name);
564 +        eputs(": read error\n");
565 +        quit(1);
566   }
567  
568  
# Line 586 | Line 693 | l_ray(         /* return ray origin or direction */
693                  return((double)nfiles);
694          fn = d - 0.5;
695          if (ltick[fn] != eclock) {              /* need to compute? */
696 <                lorg[fn][0] = lorg[fn][1] = lorg[fn][2] = 0.0;
697 <                ldir[fn][0] = ldir[fn][1] = ldir[fn][2] = 0.0;
698 <                ldist[fn] = -1.0;
699 <                if (input[fn].vw.type == 0)
696 >                if (input[fn].vw.type == 0) {
697 >                        lorg[fn][0] = lorg[fn][1] = lorg[fn][2] = 0.0;
698 >                        ldir[fn][0] = ldir[fn][1] = ldir[fn][2] = 0.0;
699 >                        ldist[fn] = -1.0;
700                          errno = EDOM;
701 <                else {
701 >                } else {
702                          pix2loc(loc, &input[fn].rs, xscan, ymax-1-yscan);
703                          ldist[fn] = viewray(lorg[fn], ldir[fn],
704                                          &input[fn].vw, loc[0], loc[1]);
705 +                        if (ldist[fn] < -FTINY)
706 +                                errno = EDOM;
707                  }
708                  ltick[fn] = eclock;
709          }
# Line 658 | Line 767 | l_psize(char *nm)              /* compute pixel size in steradians
767  
768  
769   extern void
770 < wputs(char      *msg)
770 > wputs(const char *msg)
771   {
772          if (!nowarn)
773                  eputs(msg);
# Line 666 | Line 775 | wputs(char     *msg)
775  
776  
777   extern void
778 < eputs(char *msg)
778 > eputs(const char *msg)
779   {
780          fputs(msg, stderr);
781   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines