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

Comparing ray/src/px/pcond.c (file contents):
Revision 3.2 by greg, Fri Oct 4 16:10:39 1996 UTC vs.
Revision 3.10 by greg, Wed Feb 5 16:08:14 1997 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1996 Regents of the University of California */
1 > /* Copyright (c) 1997 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 10 | Line 10 | static char SCCSid[] = "$SunId$ LBL";
10  
11   #include "pcond.h"
12  
13 #include "random.h"
13  
15
14   #define LDMAX           100             /* default max. display luminance */
15   #define LDMINF          0.01            /* default min. display lum. factor */
16  
# Line 26 | Line 24 | char   *progname;                      /* global argv[0] */
24  
25   char    *infn;                          /* input file name */
26   FILE    *infp;                          /* input stream */
27 + FILE    *mapfp = NULL;                  /* tone-mapping function stream */
28   VIEW    ourview = STDVIEW;              /* picture view */
29   int     gotview = 0;                    /* picture has view */
30   double  pixaspect = 1.0;                /* pixel aspect ratio */
31 + double  fixfrac = 0.;                   /* histogram share due to fixations */
32   RESOLU  inpres;                         /* input picture resolution */
33  
34   COLOR   *fovimg;                        /* foveal (1 degree) averaged image */
35   short   fvxr, fvyr;                     /* foveal image resolution */
36 < int     bwhist[HISTRES];                /* luminance histogram */
37 < long    histot;                         /* total count of histogram */
36 > short   (*fixlst)[2];                   /* fixation history list */
37 > int     nfixations;                     /* number of fixation points */
38 > float   bwhist[HISTRES];                /* luminance histogram */
39 > double  histot;                         /* total count of histogram */
40   double  bwmin, bwmax;                   /* histogram limits */
41   double  bwavg;                          /* mean brightness */
42  
# Line 77 | Line 79 | char   *argv[];
79                  case 'w':
80                          bool(DO_CWEIGHT);
81                          break;
82 +                case 'i':
83 +                        if (i+1 >= argc) goto userr;
84 +                        fixfrac = atof(argv[++i]);
85 +                        if (fixfrac > FTINY) what2do |= DO_FIXHIST;
86 +                        else what2do &= ~DO_FIXHIST;
87 +                        break;
88                  case 'l':
89                          bool(DO_LINEAR);
90                          break;
# Line 103 | Line 111 | char   *argv[];
111                          if (i+1 >= argc) goto userr;
112                          mbcalfile = argv[++i];
113                          break;
114 +                case 'm':
115 +                        if (i+1 >= argc) goto userr;
116 +                        cwarpfile = argv[++i];
117 +                        break;
118                  case 't':
119                          if (i+1 >= argc) goto userr;
120                          ldmax = atof(argv[++i]);
# Line 113 | Line 125 | char   *argv[];
125                          if (i+1 >= argc) goto userr;
126                          ldmin = atof(argv[++i]);
127                          break;
128 +                case 'd':
129 +                        if (i+1 >= argc) goto userr;
130 +                        if ((mapfp = fopen(argv[++i], "w")) == NULL) {
131 +                                fprintf(stderr,
132 +                                        "%s: cannot open for writing\n",
133 +                                                argv[i]);
134 +                                exit(1);
135 +                        }
136 +                        break;
137                  default:
138                          goto userr;
139                  }
140 <        if (mbcalfile != NULL & outprims != stdprims) {
141 <                fprintf(stderr, "%s: only one of -p or -f option supported\n",
140 >        if ((mbcalfile != NULL) + (cwarpfile != NULL) +
141 >                        (outprims != stdprims) > 1) {
142 >                fprintf(stderr,
143 >                        "%s: only one of -p, -m or -f option supported\n",
144                                  progname);
145                  exit(1);
146          }
# Line 134 | Line 157 | char   *argv[];
157          Bldmax = Bl(ldmax);
158          if (i >= argc || i+2 < argc)
159                  goto userr;
160 +                                        /* open input file */
161          if ((infp = fopen(infn=argv[i], "r")) == NULL)
162                  syserror(infn);
163 +                                        /* open output file */
164          if (i+2 == argc && freopen(argv[i+1], "w", stdout) == NULL)
165                  syserror(argv[i+1]);
166   #ifdef MSDOS
# Line 144 | Line 169 | char   *argv[];
169   #endif
170          getahead();                     /* load input header */
171          printargs(argc, argv, stdout);  /* add to output header */
172 <        if (outprims != inprims)
172 >        if (mbcalfile == NULL & outprims != stdprims)
173                  fputprims(outprims, stdout);
174 +        getfovimg();                    /* get foveal sample image */
175 +        if (what2do&DO_FIXHIST)         /* get fixation history? */
176 +                getfixations(stdin);
177          mapimage();                     /* map the picture */
178 +        if (mapfp != NULL)              /* write out basic mapping */
179 +                putmapping(mapfp);
180          exit(0);
181   userr:
182 <        fprintf(stderr, "Usage: %s [-{h|a|v|s|c|l|w}[+-]][-e ev][-p xr yr xg yg xb yb xw yw|-f mbf.cal][-t Ldmax][-b Ldmin] inpic [outpic]\n",
182 >        fprintf(stderr, "Usage: %s [-{h|a|v|s|c|l|w}[+-]][-i ffrac][-e ev][-p xr yr xg yg xb yb xw yw|-f mbf.cal|-m rgb.cwp][-t Ldmax][-b Ldmin][-d mapfile] inpic [outpic]\n",
183                          progname);
184          exit(1);
185   #undef bool
# Line 236 | Line 266 | mapimage()                             /* map picture and send to stdout */
266   {
267          COLOR   *scan;
268  
269 < #ifdef DEBUG
240 <        fprintf(stderr, "%s: generating histogram...", progname);
241 < #endif
242 <        fovhist();                      /* generate adaptation histogram */
243 < #ifdef DEBUG
244 <        fputs("done\n", stderr);
245 < #endif
269 >        comphist();                     /* generate adaptation histogram */
270          check2do();                     /* modify what2do flags */
271 <        if (what2do&DO_VEIL) {
248 < #ifdef DEBUG
249 <                fprintf(stderr, "%s: computing veiling...", progname);
250 < #endif
271 >        if (what2do&DO_VEIL)
272                  compveil();
273 < #ifdef DEBUG
274 <                fputs("done\n", stderr);
254 < #endif
255 <        }
256 < #ifdef DEBUG
257 <        fprintf(stderr, "%s: computing brightness mapping...", progname);
258 < #endif
259 <        if (!(what2do&DO_LINEAR) && mkbrmap() < 0) {    /* make tone map */
260 <                what2do |= DO_LINEAR;           /* use linear scaling */
261 < #ifdef DEBUG
262 <                fputs("failed!\n", stderr);
263 <        } else
264 <                fputs("done\n", stderr);
265 < #else
266 <        }
267 < #endif
273 >        if (!(what2do&DO_LINEAR) && mkbrmap() < 0)      /* make tone map */
274 >                what2do |= DO_LINEAR;   /* failed! -- use linear scaling */
275          if (what2do&DO_LINEAR) {
276                  if (scalef <= FTINY) {
277                          if (what2do&DO_HSENS)
# Line 274 | Line 281 | mapimage()                             /* map picture and send to stdout */
281                                  scalef = Lb(0.5*(Bldmax+Bldmin)) / Lb(bwavg);
282                          scalef *= WHTEFFICACY/(inpexp*ldmax);
283                  }
284 < #ifdef DEBUG
278 <                fprintf(stderr, "%s: linear scaling factor = %f\n",
279 <                                progname, scalef);
280 < #endif
281 <                if (scalef < 0.99 | scalef > 1.01)
282 <                        fputexpos(scalef, stdout);      /* write in header */
284 >                fputexpos(inpexp*scalef, stdout);       /* record exposure */
285                  if (lumf == cielum) scalef /= WHTEFFICACY;
286          }
287 <        putchar('\n');                  /* complete header */
287 >        fputformat(COLRFMT, stdout);    /* complete header */
288 >        putchar('\n');
289          fputsresolu(&inpres, stdout);   /* resolution doesn't change */
290 <
290 >                                        /* condition our image */
291          for (scan = firstscan(); scan != NULL; scan = nextscan())
292                  if (fwritescan(scan, scanlen(&inpres), stdout) < 0) {
293                          fprintf(stderr, "%s: scanline write error\n",
# Line 294 | Line 297 | mapimage()                             /* map picture and send to stdout */
297   }
298  
299  
300 < double
298 < centprob(x, y)                  /* center-weighting probability function */
299 < int     x, y;
300 > getfovimg()                     /* load foveal sampled image */
301   {
301        double  xr, yr;
302
303        xr = (x+.5)/fvxr - .5;
304        yr = (y+.5)/fvyr - .5;
305        return(1. - xr*xr - yr*yr);     /* radial, == 0.5 at corners */
306 }
307
308
309 fovhist()                       /* create foveal sampled image and histogram */
310 {
302          extern FILE     *popen();
303          char    combuf[128];
313        double  l, b, lwmin, lwmax;
304          FILE    *fp;
305          int     x, y;
306 <
306 >                                                /* compute image size */
307          fvxr = sqrt(ourview.hn2)/FOVDIA + 0.5;
308          if (fvxr < 2) fvxr = 2;
309          fvyr = sqrt(ourview.vn2)/FOVDIA + 0.5;
# Line 325 | Line 315 | fovhist()                      /* create foveal sampled image and histogr
315          }
316          if ((fovimg = (COLOR *)malloc(fvxr*fvyr*sizeof(COLOR))) == NULL)
317                  syserror("malloc");
318 <        sprintf(combuf, "pfilt -1 -b -x %d -y %d %s", fvxr, fvyr, infn);
318 >        sprintf(combuf, "pfilt -1 -b -pa 0 -x %d -y %d %s", fvxr, fvyr, infn);
319          if ((fp = popen(combuf, "r")) == NULL)
320                  syserror("popen");
321          getheader(fp, NULL, NULL);      /* skip header */
# Line 335 | Line 325 | fovhist()                      /* create foveal sampled image and histogr
325                  if (freadscan(fovscan(y), fvxr, fp) < 0)
326                          goto readerr;
327          pclose(fp);
338        lwmin = 1e10;                   /* find extrema */
339        lwmax = 0.;
340        for (y = 0; y < fvyr; y++)
341                for (x = 0; x < fvxr; x++) {
342                        l = plum(fovscan(y)[x]);
343                        if (l < lwmin) lwmin = l;
344                        if (l > lwmax) lwmax = l;
345                }
346        if (lwmin < LMIN) lwmin = LMIN;
347        if (lwmax > LMAX) lwmax = LMAX;
348                                        /* compute histogram */
349        bwmin = Bl(lwmin)*(1. - .01/HISTRES);
350        bwmax = Bl(lwmax)*(1. + .01/HISTRES);
351        bwavg = 0.;
352        for (y = 0; y < fvyr; y++)
353                for (x = 0; x < fvxr; x++) {
354                        if (what2do & DO_CWEIGHT &&
355                                        frandom() > centprob(x,y))
356                                continue;
357                        l = plum(fovscan(y)[x]);
358                        b = Bl(l);
359                        if (b < bwmin) continue;
360                        if (b > bwmax) continue;
361                        bwavg += b;
362                        bwhc(b)++;
363                        histot++;
364                }
365        bwavg /= (double)histot;
328          return;
329   readerr:
330          fprintf(stderr, "%s: error reading from pfilt process in fovimage\n",
# Line 373 | Line 335 | readerr:
335  
336   check2do()              /* check histogram to see what isn't worth doing */
337   {
338 <        long    sum;
338 >        double  sum;
339          double  b, l;
340          register int    i;
341  
342                                          /* check for within display range */
343 <        if (!(what2do&DO_LINEAR) && Lb(bwmax)/Lb(bwmin) <= ldmax/ldmin)
343 >        if (bwmax - bwmin <= Bldmax - Bldmin)
344                  what2do |= DO_LINEAR;
345 +                                        /* determine if veiling significant */
346 +        if (bwmax - bwmin < 4.5)                /* heuristic */
347 +                what2do &= ~DO_VEIL;
348  
349 <        if (!(what2do & (DO_ACUITY|DO_COLOR|DO_VEIL)))
349 >        if (!(what2do & (DO_ACUITY|DO_COLOR)))
350                  return;
351                                          /* find 5th percentile */
352 <        sum = histot*0.05 + .5;
352 >        sum = histot*0.05;
353          for (i = 0; i < HISTRES; i++)
354                  if ((sum -= bwhist[i]) <= 0)
355                          break;
# Line 393 | Line 358 | check2do()             /* check histogram to see what isn't worth
358                                          /* determine if acuity adj. useful */
359          if (what2do&DO_ACUITY &&
360                          hacuity(l) >= (inpres.xr/sqrt(ourview.hn2) +
361 <                        inpres.yr/sqrt(ourview.vn2))/(2.*180./PI*2.))
361 >                        inpres.yr/sqrt(ourview.vn2))/(2.*180./PI))
362                  what2do &= ~DO_ACUITY;
363                                          /* color sensitivity loss? */
364 <        if (l >= 6.0)
364 >        if (l >= TopMesopic)
365                  what2do &= ~DO_COLOR;
401        if (!(what2do&DO_VEIL))
402                return;
403                                        /* find 50th percentile (median) */
404        sum = histot*0.50 + .5;
405        for (i = 0; i < HISTRES; i++)
406                if ((sum -= bwhist[i]) <= 0)
407                        break;
408                                        /* determine if veiling significant */
409         b = (i+.5)*(bwmax-bwmin)/HISTRES + bwmin;
410         if ((b-bwmin)/(bwmax-bwmin) >= 0.70)   /* heuristic */
411                what2do &= ~DO_VEIL;
366   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines