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

Comparing ray/src/px/pfilt.c (file contents):
Revision 2.4 by greg, Mon Sep 21 12:14:17 1992 UTC vs.
Revision 2.30 by schorsch, Mon Mar 29 00:34:23 2004 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  pfilt.c - program to post-process picture file.
6   *
7   *     9/26/85
8 + *     6/23/93  Added additional buffers for value spreading
9   */
10  
11 < #include  <stdio.h>
11 > #include  "copyright.h"
12  
15 #ifdef MSDOS
16 #include  <fcntl.h>
17 #endif
18
13   #include  <signal.h>
14 + #include  <string.h>
15  
16 + #include  "platform.h"
17 + #include  "standard.h"
18 + #include  "rtio.h"
19   #include  "color.h"
20 <
23 < #include  "resolu.h"
24 <
20 > #include  "view.h"
21   #include  "paths.h"
22 + #include  "pfilt.h"
23  
27 extern char  *malloc();
28 extern float  *matchlamp();
24  
25   #define  FEQ(a,b)       ((a) >= .98*(b) && (a) <= 1.02*(b))
26  
27 < #define  CHECKRAD       1.5     /* radius to check for filtering */
27 > double   CHECKRAD = 2.0;        /* radius to check for filtering */
28  
29 + #define  THRESHRAD      5.0     /* maximum sample spread in output */
30 +
31   COLOR  exposure = WHTCOLOR;     /* exposure for the frame */
32  
33   double  rad = 0.0;              /* output pixel radius for filtering */
34  
35 + double  thresh = 0.0;           /* maximum contribution for subpixel */
36 +
37   int  nrows = 0;                 /* number of rows for output */
38   int  ncols = 0;                 /* number of columns for output */
39  
# Line 45 | Line 44 | int  singlepass = 0;           /* true means skip first pass */
44  
45   int  avghot = 0;                /* true means average in bright spots */
46  
47 < double  hotlvl = 1000.0;        /* level considered "hot" */
47 > double  hotlvl = 100.0;         /* level considered "hot" */
48  
49   int  npts = 0;                  /* (half) number of points for stars */
50  
# Line 53 | Line 52 | double spread = 1e-4;          /* spread for star points */
52  
53   char  *tfname = NULL;
54  
55 + char  template[] = TEMPLATE;
56 +
57   char  *lampdat = "lamp.tab";    /* lamp data file */
58  
59   int  order;                     /* scanline ordering of input */
# Line 62 | Line 63 | int  correctaspect = 0;                /* aspect ratio correction? *
63  
64   int  wrongformat = 0;
65  
66 < int  xrad;                      /* x window size */
67 < int  yrad;                      /* y window size */
66 > VIEW  ourview = STDVIEW;
67 > int  gotview = 0;
68 > int  wrapfilt = 0;              /* wrap filter horizontally? */
69  
70 + int  estatus = 0;               /* exit status (for non-fatal errors) */
71 +
72 + int  xrad;                      /* x search radius */
73 + int  yrad;                      /* y search radius */
74 + int  xbrad;                     /* x box size */
75 + int  ybrad;                     /* y box size */
76 +
77   int  barsize;                   /* size of input scan bar */
78   COLOR  **scanin;                /* input scan bar */
79   COLOR  *scanout;                /* output scan line */
80 + COLOR  **scoutbar;              /* output scan bar (if thresh > 0) */
81 + float  **greybar;               /* grey-averaged input values */
82 + int  obarsize = 0;              /* size of output scan bar */
83 + int  orad = 0;                  /* output window radius */
84  
85   char  *progname;
86  
87 + static gethfunc headline;
88 + static brightfunc_t rgb_bright;
89 + static brightfunc_t xyz_bright;
90 + //static double rgb_bright(COLOR  clr);
91 + //static double xyz_bright(COLOR  clr);
92 + static void copyfile(FILE  *in, FILE  *out);
93 + static void pass1(FILE  *in);
94 + static void pass2(FILE  *in);
95 + static void scan2init(void);
96 + static void scan2sync(int  r);
97 + static void scan2flush(void);
98  
99 < main(argc, argv)
100 < int  argc;
101 < char  **argv;
99 >
100 > int
101 > main(
102 >        int  argc,
103 >        char  **argv
104 > )
105   {
79        extern double  pow();
80        extern long  ftell();
81        extern int  quit(), headline();
106          FILE  *fin;
107          float  *lampcolor;
108          char  *lamptype = NULL;
# Line 86 | Line 110 | char  **argv;
110          double  outaspect = 0.0;
111          double  d;
112          int  i, j;
113 < #ifdef MSDOS
114 <        extern int  _fmode;
115 <        _fmode = O_BINARY;
92 <        setmode(fileno(stdin), O_BINARY);
93 <        setmode(fileno(stdout), O_BINARY);
94 < #endif
113 >        SET_DEFAULT_BINARY();
114 >        SET_FILE_BINARY(stdin);
115 >        SET_FILE_BINARY(stdout);
116          if (signal(SIGINT, quit) == SIG_IGN)
117                  signal(SIGINT, SIG_IGN);
118 + #ifdef SIGHUP
119          if (signal(SIGHUP, quit) == SIG_IGN)
120 <                signal(SIGINT, SIG_IGN);
120 >                signal(SIGHUP, SIG_IGN);
121 > #endif
122          signal(SIGTERM, quit);
123 + #ifdef SIGPIPE
124          signal(SIGPIPE, quit);
125 + #endif
126   #ifdef  SIGXCPU
127          signal(SIGXCPU, quit);
128          signal(SIGXFSZ, quit);
129   #endif
130  
131 <        progname = argv[0];
131 >        progname = argv[0] = fixargv0(argv[0]);
132  
133          for (i = 1; i < argc; i++)
134                  if (argv[i][0] == '-')
# Line 140 | Line 165 | char  **argv;
165                                          fprintf(stderr,
166                                                  "%s: exposure out of range\n",
167                                                          argv[0]);
168 <                                        exit(1);
168 >                                        quit(1);
169                                  }
170                                  switch (argv[i][2]) {
171                                  case '\0':
# Line 187 | Line 212 | char  **argv;
212                          case 'r':
213                                  rad = atof(argv[++i]);
214                                  break;
215 +                        case 'm':
216 +                                thresh = atof(argv[++i]);
217 +                                if (rad <= FTINY)
218 +                                        rad = 0.6;
219 +                                break;
220                          case 'b':
221 <                                rad = 0.0;
221 >                                rad = thresh = 0.0;
222                                  break;
223                          default:;
224                          badopt:
# Line 207 | Line 237 | char  **argv;
237                          fprintf(stderr, "%s: unknown lamp type\n", lamptype);
238                          quit(1);
239                  }
240 <                for (i = 0; i < 3; i++)
241 <                        if (lampcolor[i] > 1e-4)
242 <                                colval(exposure,i) /= lampcolor[i];
240 >                for (j = 0; j < 3; j++)
241 >                        if (lampcolor[j] > 1e-4)
242 >                                colval(exposure,j) /= lampcolor[j];
243                  freelamps();
244          }
245                                          /* open input file */
# Line 217 | Line 247 | char  **argv;
247                  if (singlepass)
248                          fin = stdin;
249                  else {
250 <                        tfname = mktemp(TEMPLATE);
250 >                        tfname = mktemp(template);
251                          if ((fin = fopen(tfname, "w+")) == NULL) {
252                                  fprintf(stderr, "%s: can't create ", progname);
253                                  fprintf(stderr, "temp file \"%s\"\n", tfname);
# Line 255 | Line 285 | char  **argv;
285          }
286          if (!(order & YMAJOR))
287                  inpaspect = 1.0/inpaspect;
288 +                                        /* wrap around for cylindrical view? */
289 +        wrapfilt = gotview && ourview.type == VT_CYL &&
290 +                        ourview.horiz >= 360.-FTINY && order & YMAJOR;
291                                          /* compute output resolution */
292          if (ncols <= 0)
293                  ncols = x_c*xres + .5;
# Line 286 | Line 319 | char  **argv;
319          }
320          pass2(fin);
321  
322 <        quit(0);
322 >        quit(estatus);
323 >        return estatus; /* pro forma return */
324   }
325  
326  
327 < headline(s)                             /* process line from header */
328 < char  *s;
327 > static double
328 > rgb_bright(
329 >        COLOR  clr
330 > )
331   {
332 +        return(bright(clr));
333 + }
334 +
335 +
336 + static double
337 + xyz_bright(
338 +        COLOR  clr
339 + )
340 + {
341 +        return(clr[CIEY]);
342 + }
343 +
344 +
345 + brightfunc_t *ourbright = rgb_bright;
346 +
347 + static int
348 + headline(                               /* process line from header */
349 +        char    *s,
350 +        void    *p
351 + )
352 + {
353          char  fmt[32];
354  
355          fputs(s, stdout);               /* copy to output */
356          if (isaspect(s))                /* get aspect ratio */
357                  inpaspect *= aspectval(s);
358 <        else if (isformat(s)) {
359 <                formatval(fmt, s);
360 <                wrongformat = strcmp(fmt, COLRFMT);
361 <        }
358 >        else if (isexpos(s))            /* get exposure */
359 >                hotlvl *= exposval(s);
360 >        else if (formatval(fmt, s)) {   /* get format */
361 >                wrongformat = 0;
362 >                if (!strcmp(COLRFMT, fmt))
363 >                        ourbright = rgb_bright;
364 >                else if (!strcmp(CIEFMT, fmt))
365 >                        ourbright = xyz_bright;
366 >                else
367 >                        wrongformat = !globmatch(PICFMT, fmt);
368 >        } else if (isview(s) && sscanview(&ourview, s) > 0)
369 >                gotview++;
370 >        return(0);
371   }
372  
373  
374 < copyfile(in, out)                       /* copy a file */
375 < register FILE  *in, *out;
374 > static void
375 > copyfile(                       /* copy a file */
376 >        register FILE  *in,
377 >        register FILE  *out
378 > )
379   {
380          register int  c;
381  
# Line 320 | Line 389 | register FILE  *in, *out;
389   }
390  
391  
392 < pass1(in)                               /* first pass of picture file */
393 < FILE  *in;
392 > static void
393 > pass1(                          /* first pass of picture file */
394 >        FILE  *in
395 > )
396   {
397          int  i;
398          COLOR  *scan;
# Line 335 | Line 406 | FILE  *in;
406          }
407          for (i = 0; i < yres; i++) {
408                  if (freadscan(scan, xres, in) < 0) {
409 <                        nrows = nrows * i / yres;       /* adjust frame */
409 >                        nrows = (long)nrows * i / yres; /* adjust frame */
410                          if (nrows <= 0) {
411                                  fprintf(stderr, "%s: empty frame\n", progname);
412                                  quit(1);
413                          }
414                          fprintf(stderr, "%s: warning - partial frame (%d%%)\n",
415 <                                        progname, 100*i/yres);
415 >                                        progname, (int)(100L*i/yres));
416                          yres = i;
417                          y_r = (double)nrows/yres;
418 +                        estatus++;
419                          break;
420                  }
421                  pass1scan(scan, i);
422          }
423 <        free((char *)scan);
423 >        free((void *)scan);
424   }
425  
426  
427 < pass2(in)                       /* last pass on file, write to stdout */
428 < FILE  *in;
427 > static void
428 > pass2(                  /* last pass on file, write to stdout */
429 >        FILE  *in
430 > )
431   {
432          int  yread;
433          int  ycent, xcent;
# Line 363 | Line 437 | FILE  *in;
437          scan2init();
438          yread = 0;
439          for (r = 0; r < nrows; r++) {
440 <                ycent = (long)r*yres/nrows;
440 >                ycent = (r+.5)*yres/nrows;
441                  while (yread <= ycent+yrad) {
442                          if (yread < yres) {
443                                  if (freadscan(scanin[yread%barsize],
444                                                  xres, in) < 0) {
445                                          fprintf(stderr,
446 <                                                "%s: bad read (y=%d)\n",
446 >                                                "%s: truncated input (y=%d)\n",
447                                                  progname, yres-1-yread);
448                                          quit(1);
449                                  }
# Line 377 | Line 451 | FILE  *in;
451                          }
452                          yread++;
453                  }
454 +                if (obarsize > 0)
455 +                        scan2sync(r);
456                  for (c = 0; c < ncols; c++) {
457 <                        xcent = (long)c*xres/ncols;
458 <                        if (rad <= 0.0)
459 <                                dobox(scanout[c], xcent, ycent, c, r);
460 <                        else
457 >                        xcent = (c+.5)*xres/ncols;
458 >                        if (thresh > FTINY)
459 >                                dothresh(xcent, ycent, c, r);
460 >                        else if (rad > FTINY)
461                                  dogauss(scanout[c], xcent, ycent, c, r);
462 +                        else
463 +                                dobox(scanout[c], xcent, ycent, c, r);
464                  }
465 <                if (fwritescan(scanout, ncols, stdout) < 0) {
465 >                if (scanout != NULL && fwritescan(scanout, ncols, stdout) < 0) {
466                          fprintf(stderr, "%s: write error in pass2\n", progname);
467                          quit(1);
468                  }
469          }
470 <                                        /* skip leftovers */
470 >                                        /* skip leftover input */
471          while (yread < yres) {
472                  if (freadscan(scanin[0], xres, in) < 0)
473                          break;
474                  yread++;
475          }
476 +        scan2flush();                   /* flush output */
477   }
478  
479  
480 < scan2init()                     /* prepare scanline arrays */
480 > static void
481 > scan2init(void)                 /* prepare scanline arrays */
482   {
483          COLOR   ctmp;
484          double  d;
485          register int  i;
486  
487 <        if (rad <= 0.0) {
488 <                xrad = xres/ncols/2 + 1;
489 <                yrad = yres/nrows/2 + 1;
410 <        } else {
487 >        xbrad = xres/ncols/2 + 1;
488 >        ybrad = yres/nrows/2 + 1;
489 >        if (rad > FTINY) {
490                  if (nrows >= yres && ncols >= xres)
491                          rad *= (y_r + x_c)/2.0;
492  
493 <                xrad = CHECKRAD*rad/x_c + 1;
494 <                yrad = CHECKRAD*rad/y_r + 1;
495 <
493 >                if (thresh > FTINY) {
494 >                        orad = CHECKRAD*THRESHRAD*rad + 1;
495 >                        xrad = orad/x_c + xbrad;
496 >                        yrad = orad/y_r + ybrad;
497 >                        obarsize = 2*orad + 1;
498 >                } else {
499 >                        xrad = CHECKRAD*rad/x_c + 1;
500 >                        yrad = CHECKRAD*rad/y_r + 1;
501 >                }
502                  initmask();             /* initialize filter table */
503 +        } else {
504 +                xrad = xbrad;
505 +                yrad = ybrad;
506          }
507          barsize = 2*yrad + 1;
508          scanin = (COLOR **)malloc(barsize*sizeof(COLOR *));
509 +        if (scanin == NULL)
510 +                goto memerr;
511          for (i = 0; i < barsize; i++) {
512                  scanin[i] = (COLOR *)malloc(xres*sizeof(COLOR));
513 <                if (scanin[i] == NULL) {
514 <                        fprintf(stderr, "%s: out of memory\n", progname);
515 <                        quit(1);
513 >                if (scanin[i] == NULL)
514 >                        goto memerr;
515 >        }
516 >        if (obarsize > 0) {
517 >                scoutbar = (COLOR **)malloc(obarsize*sizeof(COLOR *));
518 >                greybar = (float **)malloc(obarsize*sizeof(float *));
519 >                if ((scoutbar == NULL) | (greybar == NULL))
520 >                        goto memerr;
521 >                for (i = 0; i < obarsize; i++) {
522 >                        scoutbar[i] = (COLOR *)malloc(ncols*sizeof(COLOR));
523 >                        greybar[i] = (float *)malloc(ncols*sizeof(float));
524 >                        if ((scoutbar[i] == NULL) | (greybar[i] == NULL))
525 >                                goto memerr;
526                  }
527 +        } else {
528 +                scanout = (COLOR *)malloc(ncols*sizeof(COLOR));
529 +                if (scanout == NULL)
530 +                        goto memerr;
531          }
428        scanout = (COLOR *)malloc(ncols*sizeof(COLOR));
429        if (scanout == NULL) {
430                fprintf(stderr, "%s: out of memory\n", progname);
431                quit(1);
432        }
532                                          /* record pixel aspect ratio */
533          if (!correctaspect) {
534                  d = order & YMAJOR ? x_c/y_r : y_r/x_c ;
# Line 437 | Line 536 | scan2init()                    /* prepare scanline arrays */
536                          fputaspect(d, stdout);
537          }
538                                          /* record exposure */
539 <        d = bright(exposure);
539 >        d = (*ourbright)(exposure);
540          if (!FEQ(d,1.0))
541                  fputexpos(d, stdout);
542                                          /* record color correction */
# Line 449 | Line 548 | scan2init()                    /* prepare scanline arrays */
548          printf("\n");
549                                          /* write out resolution */
550          fputresolu(order, ncols, nrows, stdout);
551 +        return;
552 + memerr:
553 +        fprintf(stderr, "%s: out of memory\n", progname);
554 +        quit(1);
555   }
556  
557  
558 + static void
559 + scan2sync(                      /* synchronize grey averages and output scan */
560 +        int  r
561 + )
562 + {
563 +        static int  nextrow = 0;
564 +        COLOR  ctmp;
565 +        int  ybot;
566 +        register int  c;
567 +                                        /* average input scanlines */
568 +        while (nextrow <= r+orad && nextrow < nrows) {
569 +                ybot = (nextrow+.5)*yres/nrows;
570 +                for (c = 0; c < ncols; c++) {
571 +                        dobox(ctmp, (int)((c+.5)*xres/ncols),ybot, c,nextrow);
572 +                        greybar[nextrow%obarsize][c] = (*ourbright)(ctmp);
573 +                }
574 +                                        /* and zero output scanline */
575 +                memset((char *)scoutbar[nextrow%obarsize], '\0', ncols*sizeof(COLOR));
576 +                nextrow++;
577 +        }
578 +                                        /* point to top scanline for output */
579 +        if (r-orad >= 0)
580 +                scanout = scoutbar[(r-orad)%obarsize];
581 +        else
582 +                scanout = NULL;
583 + }
584 +
585 +
586 + static void
587 + scan2flush(void)                        /* flush output buffer */
588 + {
589 +        register int  r;
590 +
591 +        for (r = nrows-orad; r < nrows; r++)
592 +                if (fwritescan(scoutbar[r%obarsize], ncols, stdout) < 0)
593 +                        break;
594 +        if (fflush(stdout) < 0) {
595 +                fprintf(stderr, "%s: write error at end of pass2\n", progname);
596 +                quit(1);
597 +        }
598 + }
599 +
600 +
601 + void
602   quit(code)              /* remove temporary file and exit */
603   int  code;
604   {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines