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.10 by greg, Fri Jun 25 17:07:03 1993 UTC vs.
Revision 2.29 by schorsch, Sun Mar 28 20:33:14 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   *
# Line 11 | Line 8 | static char SCCSid[] = "$SunId$ LBL";
8   *     6/23/93  Added additional buffers for value spreading
9   */
10  
11 < #include  "standard.h"
11 > #include  "copyright.h"
12  
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 <
20 < #include  "resolu.h"
21 <
20 > #include  "view.h"
21   #include  "paths.h"
22 + #include  "pfilt.h"
23  
24 extern float  *matchlamp();
24  
25   #define  FEQ(a,b)       ((a) >= .98*(b) && (a) <= 1.02*(b))
26  
27 < double   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  
# 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 + 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 */
# Line 77 | Line 84 | int  orad = 0;                 /* output window radius */
84  
85   char  *progname;
86  
87 + static gethfunc headline;
88 + static double rgb_bright(COLOR  clr);
89 + static double xyz_bright(COLOR  clr);
90 + static void copyfile(FILE  *in, FILE  *out);
91 + static void pass1(FILE  *in);
92 + static void pass2(FILE  *in);
93 + static void scan2init(void);
94 + static void scan2sync(int  r);
95 + static void scan2flush(void);
96  
97 < main(argc, argv)
98 < int  argc;
99 < char  **argv;
97 >
98 > int
99 > main(
100 >        int  argc,
101 >        char  **argv
102 > )
103   {
85        extern long  ftell();
86        extern int  quit(), headline();
104          FILE  *fin;
105          float  *lampcolor;
106          char  *lamptype = NULL;
# Line 91 | Line 108 | char  **argv;
108          double  outaspect = 0.0;
109          double  d;
110          int  i, j;
111 < #ifdef MSDOS
112 <        extern int  _fmode;
113 <        _fmode = O_BINARY;
97 <        setmode(fileno(stdin), O_BINARY);
98 <        setmode(fileno(stdout), O_BINARY);
99 < #endif
111 >        SET_DEFAULT_BINARY();
112 >        SET_FILE_BINARY(stdin);
113 >        SET_FILE_BINARY(stdout);
114          if (signal(SIGINT, quit) == SIG_IGN)
115                  signal(SIGINT, SIG_IGN);
116 + #ifdef SIGHUP
117          if (signal(SIGHUP, quit) == SIG_IGN)
118 <                signal(SIGINT, SIG_IGN);
118 >                signal(SIGHUP, SIG_IGN);
119 > #endif
120          signal(SIGTERM, quit);
121 + #ifdef SIGPIPE
122          signal(SIGPIPE, quit);
123 + #endif
124   #ifdef  SIGXCPU
125          signal(SIGXCPU, quit);
126          signal(SIGXFSZ, quit);
# Line 145 | Line 163 | char  **argv;
163                                          fprintf(stderr,
164                                                  "%s: exposure out of range\n",
165                                                          argv[0]);
166 <                                        exit(1);
166 >                                        quit(1);
167                                  }
168                                  switch (argv[i][2]) {
169                                  case '\0':
# Line 195 | Line 213 | char  **argv;
213                          case 'm':
214                                  thresh = atof(argv[++i]);
215                                  if (rad <= FTINY)
216 <                                        rad = 1.0;
216 >                                        rad = 0.6;
217                                  break;
218                          case 'b':
219                                  rad = thresh = 0.0;
# Line 217 | Line 235 | char  **argv;
235                          fprintf(stderr, "%s: unknown lamp type\n", lamptype);
236                          quit(1);
237                  }
238 <                for (i = 0; i < 3; i++)
239 <                        if (lampcolor[i] > 1e-4)
240 <                                colval(exposure,i) /= lampcolor[i];
238 >                for (j = 0; j < 3; j++)
239 >                        if (lampcolor[j] > 1e-4)
240 >                                colval(exposure,j) /= lampcolor[j];
241                  freelamps();
242          }
243                                          /* open input file */
# Line 227 | Line 245 | char  **argv;
245                  if (singlepass)
246                          fin = stdin;
247                  else {
248 <                        tfname = mktemp(TEMPLATE);
248 >                        tfname = mktemp(template);
249                          if ((fin = fopen(tfname, "w+")) == NULL) {
250                                  fprintf(stderr, "%s: can't create ", progname);
251                                  fprintf(stderr, "temp file \"%s\"\n", tfname);
# Line 265 | Line 283 | char  **argv;
283          }
284          if (!(order & YMAJOR))
285                  inpaspect = 1.0/inpaspect;
286 +                                        /* wrap around for cylindrical view? */
287 +        wrapfilt = gotview && ourview.type == VT_CYL &&
288 +                        ourview.horiz >= 360.-FTINY && order & YMAJOR;
289                                          /* compute output resolution */
290          if (ncols <= 0)
291                  ncols = x_c*xres + .5;
# Line 296 | Line 317 | char  **argv;
317          }
318          pass2(fin);
319  
320 <        quit(0);
320 >        quit(estatus);
321 >        return estatus; /* pro forma return */
322   }
323  
324  
325 < headline(s)                             /* process line from header */
326 < char  *s;
325 > static double
326 > rgb_bright(
327 >        COLOR  clr
328 > )
329   {
330 +        return(bright(clr));
331 + }
332 +
333 +
334 + static double
335 + xyz_bright(
336 +        COLOR  clr
337 + )
338 + {
339 +        return(clr[CIEY]);
340 + }
341 +
342 +
343 + double  (*ourbright)() = rgb_bright;
344 +
345 +
346 + static int
347 + headline(                               /* process line from header */
348 +        char    *s,
349 +        void    *p
350 + )
351 + {
352          char  fmt[32];
353  
354          fputs(s, stdout);               /* copy to output */
355          if (isaspect(s))                /* get aspect ratio */
356                  inpaspect *= aspectval(s);
357 <        else if (isexpos(s))
357 >        else if (isexpos(s))            /* get exposure */
358                  hotlvl *= exposval(s);
359 <        else if (isformat(s)) {
360 <                formatval(fmt, s);
361 <                wrongformat = strcmp(fmt, COLRFMT);
362 <        }
359 >        else if (formatval(fmt, s)) {   /* get format */
360 >                wrongformat = 0;
361 >                if (!strcmp(COLRFMT, fmt))
362 >                        ourbright = rgb_bright;
363 >                else if (!strcmp(CIEFMT, fmt))
364 >                        ourbright = xyz_bright;
365 >                else
366 >                        wrongformat = !globmatch(PICFMT, fmt);
367 >        } else if (isview(s) && sscanview(&ourview, s) > 0)
368 >                gotview++;
369 >        return(0);
370   }
371  
372  
373 < copyfile(in, out)                       /* copy a file */
374 < register FILE  *in, *out;
373 > static void
374 > copyfile(                       /* copy a file */
375 >        register FILE  *in,
376 >        register FILE  *out
377 > )
378   {
379          register int  c;
380  
# Line 332 | Line 388 | register FILE  *in, *out;
388   }
389  
390  
391 < pass1(in)                               /* first pass of picture file */
392 < FILE  *in;
391 > static void
392 > pass1(                          /* first pass of picture file */
393 >        FILE  *in
394 > )
395   {
396          int  i;
397          COLOR  *scan;
# Line 356 | Line 414 | FILE  *in;
414                                          progname, (int)(100L*i/yres));
415                          yres = i;
416                          y_r = (double)nrows/yres;
417 +                        estatus++;
418                          break;
419                  }
420                  pass1scan(scan, i);
421          }
422 <        free((char *)scan);
422 >        free((void *)scan);
423   }
424  
425  
426 < pass2(in)                       /* last pass on file, write to stdout */
427 < FILE  *in;
426 > static void
427 > pass2(                  /* last pass on file, write to stdout */
428 >        FILE  *in
429 > )
430   {
431          int  yread;
432          int  ycent, xcent;
# Line 375 | Line 436 | FILE  *in;
436          scan2init();
437          yread = 0;
438          for (r = 0; r < nrows; r++) {
439 <                ycent = (long)r*yres/nrows;
439 >                ycent = (r+.5)*yres/nrows;
440                  while (yread <= ycent+yrad) {
441                          if (yread < yres) {
442                                  if (freadscan(scanin[yread%barsize],
443                                                  xres, in) < 0) {
444                                          fprintf(stderr,
445 <                                                "%s: bad read (y=%d)\n",
445 >                                                "%s: truncated input (y=%d)\n",
446                                                  progname, yres-1-yread);
447                                          quit(1);
448                                  }
# Line 392 | Line 453 | FILE  *in;
453                  if (obarsize > 0)
454                          scan2sync(r);
455                  for (c = 0; c < ncols; c++) {
456 <                        xcent = (long)c*xres/ncols;
456 >                        xcent = (c+.5)*xres/ncols;
457                          if (thresh > FTINY)
458                                  dothresh(xcent, ycent, c, r);
459                          else if (rad > FTINY)
# Line 415 | Line 476 | FILE  *in;
476   }
477  
478  
479 < scan2init()                     /* prepare scanline arrays */
479 > static void
480 > scan2init(void)                 /* prepare scanline arrays */
481   {
482          COLOR   ctmp;
483          double  d;
# Line 428 | Line 490 | scan2init()                    /* prepare scanline arrays */
490                          rad *= (y_r + x_c)/2.0;
491  
492                  if (thresh > FTINY) {
431                        xrad = CHECKRAD*THRESHRAD*rad/x_c + xbrad;
432                        yrad = CHECKRAD*THRESHRAD*rad/y_r + ybrad;
493                          orad = CHECKRAD*THRESHRAD*rad + 1;
494 +                        xrad = orad/x_c + xbrad;
495 +                        yrad = orad/y_r + ybrad;
496                          obarsize = 2*orad + 1;
497                  } else {
498                          xrad = CHECKRAD*rad/x_c + 1;
# Line 453 | Line 515 | scan2init()                    /* prepare scanline arrays */
515          if (obarsize > 0) {
516                  scoutbar = (COLOR **)malloc(obarsize*sizeof(COLOR *));
517                  greybar = (float **)malloc(obarsize*sizeof(float *));
518 <                if (scoutbar == NULL | greybar == NULL)
518 >                if ((scoutbar == NULL) | (greybar == NULL))
519                          goto memerr;
520                  for (i = 0; i < obarsize; i++) {
521                          scoutbar[i] = (COLOR *)malloc(ncols*sizeof(COLOR));
522                          greybar[i] = (float *)malloc(ncols*sizeof(float));
523 <                        if (scoutbar[i] == NULL | greybar[i] == NULL)
523 >                        if ((scoutbar[i] == NULL) | (greybar[i] == NULL))
524                                  goto memerr;
525                  }
526          } else {
# Line 473 | Line 535 | scan2init()                    /* prepare scanline arrays */
535                          fputaspect(d, stdout);
536          }
537                                          /* record exposure */
538 <        d = bright(exposure);
538 >        d = (*ourbright)(exposure);
539          if (!FEQ(d,1.0))
540                  fputexpos(d, stdout);
541                                          /* record color correction */
# Line 492 | Line 554 | memerr:
554   }
555  
556  
557 < scan2sync(r)                    /* synchronize grey averages and output scan */
558 < int  r;
557 > static void
558 > scan2sync(                      /* synchronize grey averages and output scan */
559 >        int  r
560 > )
561   {
562          static int  nextrow = 0;
563          COLOR  ctmp;
564          int  ybot;
565          register int  c;
566                                          /* average input scanlines */
567 <        while (nextrow < r+orad && nextrow < nrows) {
568 <                ybot = (long)nextrow*yres/nrows;
567 >        while (nextrow <= r+orad && nextrow < nrows) {
568 >                ybot = (nextrow+.5)*yres/nrows;
569                  for (c = 0; c < ncols; c++) {
570 <                        dobox(ctmp, (int)((long)c*xres/ncols),ybot, c,nextrow);
571 <                        greybar[nextrow%obarsize][c] = bright(ctmp);
570 >                        dobox(ctmp, (int)((c+.5)*xres/ncols),ybot, c,nextrow);
571 >                        greybar[nextrow%obarsize][c] = (*ourbright)(ctmp);
572                  }
573                                          /* and zero output scanline */
574 <                bzero((char *)scoutbar[nextrow%obarsize], ncols*sizeof(COLOR));
574 >                memset((char *)scoutbar[nextrow%obarsize], '\0', ncols*sizeof(COLOR));
575                  nextrow++;
576          }
577                                          /* point to top scanline for output */
# Line 518 | Line 582 | int  r;
582   }
583  
584  
585 < scan2flush()                    /* flush output buffer */
585 > static void
586 > scan2flush(void)                        /* flush output buffer */
587   {
588          register int  r;
589  
# Line 527 | Line 592 | scan2flush()                   /* flush output buffer */
592                          break;
593          if (fflush(stdout) < 0) {
594                  fprintf(stderr, "%s: write error at end of pass2\n", progname);
595 <                exit(1);
595 >                quit(1);
596          }
597   }
598  
599  
600 + void
601   quit(code)              /* remove temporary file and exit */
602   int  code;
603   {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines