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.12 by gwlarson, Thu Mar 12 15:47:33 1998 UTC vs.
Revision 3.18 by schorsch, Mon Oct 27 10:24:51 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1997 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   * Condition Radiance picture for display/output
6 + *  Added white-balance adjustment 10/01 (GW).
7   */
8  
9 + #include "platform.h"
10 + #include "rtprocess.h"
11   #include "pcond.h"
12  
13  
# Line 32 | Line 32 | double fixfrac = 0.;                   /* histogram share due to fixat
32   RESOLU  inpres;                         /* input picture resolution */
33  
34   COLOR   *fovimg;                        /* foveal (1 degree) averaged image */
35 < short   fvxr, fvyr;                     /* foveal image resolution */
35 > int     fvxr, fvyr;                     /* foveal image resolution */
36 > float   *crfimg;                        /* contrast reduction factors */
37   short   (*fixlst)[2];                   /* fixation history list */
38   int     nfixations;                     /* number of fixation points */
39 < float   bwhist[HISTRES];                /* luminance histogram */
39 > double  bwhist[HISTRES];                /* luminance histogram */
40   double  histot;                         /* total count of histogram */
41   double  bwmin, bwmax;                   /* histogram limits */
42   double  bwavg;                          /* mean brightness */
# Line 106 | Line 107 | char   *argv[];
107                  case 'e':
108                          if (i+1 >= argc) goto userr;
109                          scalef = atof(argv[++i]);
110 <                        if (argv[i][0] == '+' | argv[i][0] == '-')
110 >                        if ((argv[i][0] == '+') | (argv[i][0] == '-'))
111                                  scalef = pow(2.0, scalef);
112                          what2do |= DO_LINEAR;
113                          break;
# Line 151 | Line 152 | char   *argv[];
152                                  progname);
153                  exit(1);
154          }
155 <        if (outprims == stdprims & inprims != stdprims)
155 >        if ((outprims == stdprims) & (inprims != stdprims))
156                  outprims = inprims;
157          Bldmin = Bl(ldmax/lddyn);
158          Bldmax = Bl(ldmax);
# Line 163 | Line 164 | char   *argv[];
164                                          /* open output file */
165          if (i+2 == argc && freopen(argv[i+1], "w", stdout) == NULL)
166                  syserror(argv[i+1]);
167 < #ifdef MSDOS
168 <        setmode(fileno(infp), O_BINARY);
168 <        setmode(fileno(stdout), O_BINARY);
169 < #endif
167 >        SET_FILE_BINARY(infp);
168 >        SET_FILE_BINARY(stdout);
169          getahead();                     /* load input header */
170          printargs(argc, argv, stdout);  /* add to output header */
171 <        if (mbcalfile == NULL & outprims != stdprims)
171 >        if ((mbcalfile == NULL) & (outprims != stdprims))
172                  fputprims(outprims, stdout);
173          if ((what2do & (DO_PREHIST|DO_VEIL|DO_ACUITY)) != DO_PREHIST)
174                  getfovimg();            /* get foveal sample image? */
# Line 208 | Line 207 | char   *s;
207                  if (!strcmp(fmt,COLRFMT)) lumf = rgblum;
208                  else if (!strcmp(fmt,CIEFMT)) lumf = cielum;
209                  else lumf = NULL;
210 <                return;                 /* don't echo */
210 >                return(0);              /* don't echo */
211          }
212          if (isprims(s)) {               /* get input primaries */
213                  primsval(inprimS, s);
214                  inprims= inprimS;
215 <                return;                 /* don't echo */
215 >                return(0);              /* don't echo */
216          }
217          if (isexpos(s)) {               /* picture exposure */
218                  inpexp *= exposval(s);
219 <                return;                 /* don't echo */
219 >                return(0);              /* don't echo */
220          }
221          if (isaspect(s))                /* pixel aspect ratio */
222                  pixaspect *= aspectval(s);
223          if (isview(s))                  /* image view */
224                  gotview += sscanview(&ourview, s);
225 <        fputs(s, stdout);
225 >        return(fputs(s, stdout));
226   }
227  
228  
# Line 238 | Line 237 | getahead()                     /* load picture header */
237                  exit(1);
238          }
239          if (lumf == rgblum)
240 <                comprgb2xyzmat(inrgb2xyz, inprims);
240 >                comprgb2xyzWBmat(inrgb2xyz, inprims);
241          else if (mbcalfile != NULL) {
242                  fprintf(stderr, "%s: macbethcal only works with RGB pictures\n",
243                                  progname);
244                  exit(1);
245          }
246          if (!gotview || ourview.type == VT_PAR) {
247 <                copystruct(&ourview, &stdview);
247 >                ourview = stdview;
248                  ourview.type = VT_PER;
249                  if (pixaspect*inpres.yr < inpres.xr) {
250                          ourview.horiz = 40.0;
# Line 272 | Line 271 | mapimage()                             /* map picture and send to stdout */
271          comphist();                     /* generate adaptation histogram */
272          check2do();                     /* modify what2do flags */
273          if (what2do&DO_VEIL)
274 <                compveil();
275 <        if (!(what2do&DO_LINEAR) && mkbrmap() < 0)      /* make tone map */
276 <                what2do |= DO_LINEAR;   /* failed! -- use linear scaling */
274 >                compveil();             /* compute veil image */
275 >        if (!(what2do&DO_LINEAR))
276 >                if (mkbrmap() < 0)      /* make tone map */
277 >                        what2do |= DO_LINEAR;   /* failed! -- use linear */
278 > #if ADJ_VEIL
279 >                else if (what2do&DO_VEIL)
280 >                        adjveil();      /* else adjust veil image */
281 > #endif
282          if (what2do&DO_LINEAR) {
283                  if (scalef <= FTINY) {
284                          if (what2do&DO_HSENS)
# Line 302 | Line 306 | mapimage()                             /* map picture and send to stdout */
306  
307   getfovimg()                     /* load foveal sampled image */
308   {
305        extern FILE     *popen();
309          char    combuf[128];
310          FILE    *fp;
311          int     x, y;
# Line 311 | Line 314 | getfovimg()                    /* load foveal sampled image */
314          if (fvxr < 2) fvxr = 2;
315          fvyr = sqrt(ourview.vn2)/FOVDIA + 0.5;
316          if (fvyr < 2) fvyr = 2;
317 <        if (!(inpres.or & YMAJOR)) {            /* picture is rotated? */
317 >        if (!(inpres.rt & YMAJOR)) {            /* picture is rotated? */
318                  y = fvyr;
319                  fvyr = fvxr;
320                  fvxr = y;
# Line 322 | Line 325 | getfovimg()                    /* load foveal sampled image */
325          if ((fp = popen(combuf, "r")) == NULL)
326                  syserror("popen");
327          getheader(fp, NULL, NULL);      /* skip header */
328 <        if (fgetresolu(&x, &y, fp) < 0 || x != fvxr | y != fvyr)
328 >        if (fgetresolu(&x, &y, fp) < 0 || (x != fvxr) | (y != fvyr))
329                  goto readerr;
330          for (y = 0; y < fvyr; y++)
331                  if (freadscan(fovscan(y), fvxr, fp) < 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines