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.26 by schorsch, Sun Jul 27 22:12:03 2003 UTC vs.
Revision 2.40 by greg, Tue Jun 3 21:31:51 2025 UTC

# Line 11 | Line 11 | static const char RCSid[] = "$Id$";
11   #include  "copyright.h"
12  
13   #include  <signal.h>
14 < #include  <string.h>
15 <
16 < #include  "standard.h"
14 > #include  "pfilt.h"
15   #include  "platform.h"
18 #include  "color.h"
19 #include  "view.h"
16   #include  "paths.h"
17 + #include  "view.h"
18  
22 extern float  *matchlamp();
23
19   #define  FEQ(a,b)       ((a) >= .98*(b) && (a) <= 1.02*(b))
20  
21   double   CHECKRAD = 2.0;        /* radius to check for filtering */
# Line 74 | Line 69 | int  xbrad;                    /* x box size */
69   int  ybrad;                     /* y box size */
70  
71   int  barsize;                   /* size of input scan bar */
72 < COLOR  **scanin;                /* input scan bar */
73 < COLOR  *scanout;                /* output scan line */
74 < COLOR  **scoutbar;              /* output scan bar (if thresh > 0) */
72 > COLORV  **scanin;               /* input scan bar */
73 > COLORV  *scanout;               /* output scan line */
74 > COLORV  **scoutbar;             /* output scan bar (if thresh > 0) */
75   float  **greybar;               /* grey-averaged input values */
76   int  obarsize = 0;              /* size of output scan bar */
77   int  orad = 0;                  /* output window radius */
78  
79 < char  *progname;
79 > static void copyfile(FILE  *infp, FILE  *out);
80 > static void pass1(FILE  *infp);
81 > static void pass2(FILE  *infp);
82 > static void scan2init(void);
83 > static void scan2sync(int  r);
84 > static void scan2flush(void);
85  
86  
87 < main(argc, argv)
88 < int  argc;
89 < char  **argv;
87 > static double
88 > rgb_bright(
89 >        SCOLOR  clr
90 > )
91   {
92 <        extern int  headline();
92 >        return(bright(clr));
93 > }
94 >
95 >
96 > static double
97 > xyz_bright(
98 >        SCOLOR  clr
99 > )
100 > {
101 >        return(colval(clr,CIEY));
102 > }
103 >
104 >
105 > static double
106 > spec_bright(
107 >        SCOLOR  clr
108 > )
109 > {
110 >        return(pbright(clr));
111 > }
112 >
113 >
114 > brightfunc_t    *ourbright = rgb_bright;
115 >
116 >
117 > static int
118 > headline(                               /* process line from header */
119 >        char    *s,
120 >        void    *p
121 > )
122 > {
123 >        char  fmt[MAXFMTLEN];
124 >
125 >        fputs(s, stdout);               /* copy to output */
126 >        if (isaspect(s))                /* get aspect ratio */
127 >                inpaspect *= aspectval(s);
128 >        else if (isexpos(s))            /* get exposure */
129 >                hotlvl *= exposval(s);
130 >        else if (isncomp(s))            /* get #components (spectral) */
131 >                NCSAMP = ncompval(s);
132 >        else if (iswlsplit(s))          /* get wavelength partitions */
133 >                wlsplitval(WLPART, s);
134 >        else if (formatval(fmt, s)) {   /* get format */
135 >                wrongformat = 0;
136 >                if (!strcmp(COLRFMT, fmt))
137 >                        ourbright = rgb_bright;
138 >                else if (!strcmp(CIEFMT, fmt))
139 >                        ourbright = xyz_bright;
140 >                else if (!strcmp(SPECFMT, fmt))
141 >                        ourbright = spec_bright;
142 >                else
143 >                        wrongformat = !globmatch(PICFMT, fmt);
144 >        } else if (isview(s) && sscanview(&ourview, s) > 0)
145 >                gotview++;
146 >        return(0);
147 > }
148 >
149 >
150 > int
151 > main(
152 >        int  argc,
153 >        char  **argv
154 > )
155 > {
156          FILE  *fin;
157          float  *lampcolor;
158          char  *lamptype = NULL;
# Line 96 | Line 160 | char  **argv;
160          double  outaspect = 0.0;
161          double  d;
162          int  i, j;
163 +
164 +        fixargv0(argv[0]);              /* sets global progname */
165          SET_DEFAULT_BINARY();
166          SET_FILE_BINARY(stdin);
167          SET_FILE_BINARY(stdout);
# Line 113 | Line 179 | char  **argv;
179          signal(SIGXCPU, quit);
180          signal(SIGXFSZ, quit);
181   #endif
116
117        progname = argv[0] = fixargv0(argv[0]);
118
182          for (i = 1; i < argc; i++)
183                  if (argv[i][0] == '-')
184                          switch (argv[i][1]) {
# Line 150 | Line 213 | char  **argv;
213                                  if (d < 1e-20 || d > 1e20) {
214                                          fprintf(stderr,
215                                                  "%s: exposure out of range\n",
216 <                                                        argv[0]);
216 >                                                        progname);
217                                          quit(1);
218                                  }
219                                  switch (argv[i][2]) {
# Line 234 | Line 297 | char  **argv;
297                          fin = stdin;
298                  else {
299                          tfname = mktemp(template);
300 <                        if ((fin = fopen(tfname, "w+")) == NULL) {
300 >                        if ((fin = fopen(tfname, "w+b")) == NULL) {
301                                  fprintf(stderr, "%s: can't create ", progname);
302                                  fprintf(stderr, "temp file \"%s\"\n", tfname);
303                                  quit(1);
# Line 246 | Line 309 | char  **argv;
309                          }
310                  }
311          } else if (i == argc-1) {
312 <                if ((fin = fopen(argv[i], "r")) == NULL) {
312 >                if ((fin = fopen(argv[i], "rb")) == NULL) {
313                          fprintf(stderr, "%s: can't open file \"%s\"\n",
314                                                  progname, argv[i]);
315                          quit(1);
# Line 262 | Line 325 | char  **argv;
325                                  progname);
326                  quit(1);
327          }
328 +        if ((ourbright == spec_bright) ^ (NCSAMP > 3) ||
329 +                        setspectrsamp(CNDX, WLPART) < 0) {
330 +                fprintf(stderr, "%s: bad number of components\n", progname);
331 +                quit(1);
332 +        }
333                                          /* add new header info. */
334          printargs(i, argv, stdout);
335                                          /* get picture size */
# Line 306 | Line 374 | char  **argv;
374          pass2(fin);
375  
376          quit(estatus);
377 +        return estatus; /* pro forma return */
378   }
379  
380  
381 < double
382 < rgb_bright(clr)
383 < COLOR  clr;
381 > static void
382 > copyfile(                       /* copy a file */
383 >        FILE  *infp,
384 >        FILE  *out
385 > )
386   {
387 <        return(bright(clr));
317 < }
387 >        int  c;
388  
389 <
320 < double
321 < xyz_bright(clr)
322 < COLOR  clr;
323 < {
324 <        return(clr[CIEY]);
325 < }
326 <
327 <
328 < double  (*ourbright)() = rgb_bright;
329 <
330 <
331 < int
332 < headline(s)                             /* process line from header */
333 < char  *s;
334 < {
335 <        char  fmt[32];
336 <
337 <        fputs(s, stdout);               /* copy to output */
338 <        if (isaspect(s))                /* get aspect ratio */
339 <                inpaspect *= aspectval(s);
340 <        else if (isexpos(s))            /* get exposure */
341 <                hotlvl *= exposval(s);
342 <        else if (formatval(fmt, s)) {   /* get format */
343 <                wrongformat = 0;
344 <                if (!strcmp(COLRFMT, fmt))
345 <                        ourbright = rgb_bright;
346 <                else if (!strcmp(CIEFMT, fmt))
347 <                        ourbright = xyz_bright;
348 <                else
349 <                        wrongformat = !globmatch(PICFMT, fmt);
350 <        } else if (isview(s) && sscanview(&ourview, s) > 0)
351 <                gotview++;
352 <        return(0);
353 < }
354 <
355 <
356 < copyfile(in, out)                       /* copy a file */
357 < register FILE  *in, *out;
358 < {
359 <        register int  c;
360 <
361 <        while ((c = getc(in)) != EOF)
389 >        while ((c = getc(infp)) != EOF)
390                  putc(c, out);
391  
392          if (ferror(out)) {
# Line 368 | Line 396 | register FILE  *in, *out;
396   }
397  
398  
399 < pass1(in)                               /* first pass of picture file */
400 < FILE  *in;
399 > static void
400 > pass1(                          /* first pass of picture file */
401 >        FILE  *infp
402 > )
403   {
404          int  i;
405 <        COLOR  *scan;
405 >        COLORV  *scan;
406  
407          pass1init();
408  
409 <        scan = (COLOR *)malloc(xres*sizeof(COLOR));
409 >        scan = (COLORV *)malloc(xres*NCSAMP*sizeof(COLORV));
410          if (scan == NULL) {
411                  fprintf(stderr, "%s: out of memory\n", progname);
412                  quit(1);
413          }
414          for (i = 0; i < yres; i++) {
415 <                if (freadscan(scan, xres, in) < 0) {
415 >                if (freadsscan(scan, NCSAMP, xres, infp) < 0) {
416                          nrows = (long)nrows * i / yres; /* adjust frame */
417                          if (nrows <= 0) {
418                                  fprintf(stderr, "%s: empty frame\n", progname);
# Line 397 | Line 427 | FILE  *in;
427                  }
428                  pass1scan(scan, i);
429          }
430 <        free((void *)scan);
430 >        free(scan);
431   }
432  
433  
434 < pass2(in)                       /* last pass on file, write to stdout */
435 < FILE  *in;
434 > static void
435 > pass2(                  /* last pass on file, write to stdout */
436 >        FILE  *infp
437 > )
438   {
439          int  yread;
440          int  ycent, xcent;
# Line 415 | Line 447 | FILE  *in;
447                  ycent = (r+.5)*yres/nrows;
448                  while (yread <= ycent+yrad) {
449                          if (yread < yres) {
450 <                                if (freadscan(scanin[yread%barsize],
451 <                                                xres, in) < 0) {
450 >                                if (freadsscan(scanin[yread%barsize],
451 >                                                NCSAMP, xres, infp) < 0) {
452                                          fprintf(stderr,
453                                                  "%s: truncated input (y=%d)\n",
454                                                  progname, yres-1-yread);
# Line 426 | Line 458 | FILE  *in;
458                          }
459                          yread++;
460                  }
461 <                if (obarsize > 0)
461 >                if (obarsize > 0)       /* => thresh > FTINY */
462                          scan2sync(r);
463                  for (c = 0; c < ncols; c++) {
464                          xcent = (c+.5)*xres/ncols;
465                          if (thresh > FTINY)
466                                  dothresh(xcent, ycent, c, r);
467                          else if (rad > FTINY)
468 <                                dogauss(scanout[c], xcent, ycent, c, r);
468 >                                dogauss(scanout+c*NCSAMP, xcent, ycent, c, r);
469                          else
470 <                                dobox(scanout[c], xcent, ycent, c, r);
470 >                                dobox(scanout+c*NCSAMP, xcent, ycent, c, r);
471                  }
472 <                if (scanout != NULL && fwritescan(scanout, ncols, stdout) < 0) {
472 >                if (scanout != NULL && fwritesscan(scanout, NCSAMP, ncols, stdout) < 0) {
473                          fprintf(stderr, "%s: write error in pass2\n", progname);
474                          quit(1);
475                  }
476          }
477                                          /* skip leftover input */
478          while (yread < yres) {
479 <                if (freadscan(scanin[0], xres, in) < 0)
479 >                if (freadscolrs((uby8 *)tempbuffer(xres*(NCSAMP+1)),
480 >                                        NCSAMP, xres, infp) < 0)
481                          break;
482                  yread++;
483          }
# Line 452 | Line 485 | FILE  *in;
485   }
486  
487  
488 < scan2init()                     /* prepare scanline arrays */
488 > static void
489 > scan2init(void)                 /* prepare scanline arrays */
490   {
491          COLOR   ctmp;
492          double  d;
493 <        register int  i;
493 >        int  i;
494  
495          xbrad = xres/ncols/2 + 1;
496          ybrad = yres/nrows/2 + 1;
# Line 479 | Line 513 | scan2init()                    /* prepare scanline arrays */
513                  yrad = ybrad;
514          }
515          barsize = 2*yrad + 1;
516 <        scanin = (COLOR **)malloc(barsize*sizeof(COLOR *));
516 >        scanin = (COLORV **)malloc(barsize*sizeof(COLORV *));
517          if (scanin == NULL)
518                  goto memerr;
519          for (i = 0; i < barsize; i++) {
520 <                scanin[i] = (COLOR *)malloc(xres*sizeof(COLOR));
520 >                scanin[i] = (COLORV *)malloc(xres*NCSAMP*sizeof(COLORV));
521                  if (scanin[i] == NULL)
522                          goto memerr;
523          }
524          if (obarsize > 0) {
525 <                scoutbar = (COLOR **)malloc(obarsize*sizeof(COLOR *));
525 >                scoutbar = (COLORV **)malloc(obarsize*sizeof(COLORV *));
526                  greybar = (float **)malloc(obarsize*sizeof(float *));
527                  if ((scoutbar == NULL) | (greybar == NULL))
528                          goto memerr;
529                  for (i = 0; i < obarsize; i++) {
530 <                        scoutbar[i] = (COLOR *)malloc(ncols*sizeof(COLOR));
530 >                        scoutbar[i] = (COLORV *)malloc(ncols*NCSAMP*sizeof(COLORV));
531                          greybar[i] = (float *)malloc(ncols*sizeof(float));
532                          if ((scoutbar[i] == NULL) | (greybar[i] == NULL))
533                                  goto memerr;
534                  }
535          } else {
536 <                scanout = (COLOR *)malloc(ncols*sizeof(COLOR));
536 >                scanout = (COLORV *)malloc(ncols*NCSAMP*sizeof(COLORV));
537                  if (scanout == NULL)
538                          goto memerr;
539          }
# Line 510 | Line 544 | scan2init()                    /* prepare scanline arrays */
544                          fputaspect(d, stdout);
545          }
546                                          /* record exposure */
547 <        d = (*ourbright)(exposure);
547 >        d = bright(exposure);
548          if (!FEQ(d,1.0))
549                  fputexpos(d, stdout);
550                                          /* record color correction */
# Line 529 | Line 563 | memerr:
563   }
564  
565  
566 < scan2sync(r)                    /* synchronize grey averages and output scan */
567 < int  r;
566 > static void
567 > scan2sync(                      /* synchronize grey averages and output scan */
568 >        int  r
569 > )
570   {
571          static int  nextrow = 0;
572 <        COLOR  ctmp;
572 >        SCOLOR  ctmp;
573          int  ybot;
574 <        register int  c;
574 >        int  c;
575                                          /* average input scanlines */
576          while (nextrow <= r+orad && nextrow < nrows) {
577                  ybot = (nextrow+.5)*yres/nrows;
# Line 544 | Line 580 | int  r;
580                          greybar[nextrow%obarsize][c] = (*ourbright)(ctmp);
581                  }
582                                          /* and zero output scanline */
583 <                memset((char *)scoutbar[nextrow%obarsize], '\0', ncols*sizeof(COLOR));
583 >                memset(scoutbar[nextrow%obarsize], 0, ncols*NCSAMP*sizeof(COLORV));
584                  nextrow++;
585          }
586                                          /* point to top scanline for output */
# Line 555 | Line 591 | int  r;
591   }
592  
593  
594 < scan2flush()                    /* flush output buffer */
594 > static void
595 > scan2flush(void)                        /* flush output buffer */
596   {
597 <        register int  r;
597 >        int  r;
598  
599          for (r = nrows-orad; r < nrows; r++)
600 <                if (fwritescan(scoutbar[r%obarsize], ncols, stdout) < 0)
600 >                if (fwritesscan(scoutbar[r%obarsize], NCSAMP, ncols, stdout) < 0)
601                          break;
602          if (fflush(stdout) < 0) {
603                  fprintf(stderr, "%s: write error at end of pass2\n", progname);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines