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

Comparing ray/src/px/aedimage.c (file contents):
Revision 1.8 by greg, Wed Nov 7 13:10:27 1990 UTC vs.
Revision 2.4 by gwlarson, Tue Oct 27 09:08:25 1998 UTC

# Line 13 | Line 13 | static char SCCSid[] = "$SunId$ LBL";
13  
14   #include  <stdio.h>
15  
16 + #include  <math.h>
17 +
18   #include  <signal.h>
19  
20   #include  <sys/ioctl.h>
# Line 97 | Line 99 | FILE  *fin;
99   extern long  ftell();
100   long  scanpos[NROWS];
101  
100 extern double  atof();
102   double  exposure = 1.0;
103 + int  wrong_fmt = 0;
104  
105  
106   main(argc, argv)
# Line 140 | Line 142 | char  *argv[];
142                  quitmsg(errmsg);
143          }
144                                  /* get header */
145 <        getheader(fin, checkhead);
145 >        getheader(fin, checkhead, NULL);
146 >        if (wrong_fmt)
147 >                quitmsg("input must be a Radiance picture");
148                                  /* get picture dimensions */
149 <        if (fgetresolu(&xmax, &ymax, fin) != (YMAJOR|YDECR))
149 >        if (fgetresolu(&xmax, &ymax, fin) < 0)
150                  quitmsg("bad picture size");
151          if (xmax > NCOLS || ymax > NROWS)
152                  quitmsg("resolution mismatch");
# Line 166 | Line 170 | userr:
170   }
171  
172  
173 + int
174   checkhead(line)                         /* deal with line from header */
175   char  *line;
176   {
177 +        char    fmt[32];
178 +
179          if (isexpos(line))
180                  exposure *= exposval(line);
181 +        else if (isformat(line)) {
182 +                formatval(fmt, line);
183 +                wrong_fmt = strcmp(fmt, COLRFMT);
184 +        }
185 +        return(0);
186   }
187  
188  
# Line 315 | Line 327 | loopcom()                              /* print pixel values interactively */
327                                  break;
328                          case 'l':
329                          case 'L':
330 <                                printf("%-3gL", bright(cval)*683.0/exposure);
330 >                                printf("%-3gL", luminance(cval)/exposure);
331                                  break;
332                          case 'c':
333                          case 'C':
# Line 511 | Line 523 | int  offset[3];
523   picreadcm(map)                  /* do gamma correction */
524   colormap  map;
525   {
514        extern double  pow();
526          register int  i, val;
527  
528          for (i = 0; i < 256; i++) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines