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

Comparing ray/src/util/dctimestep.c (file contents):
Revision 2.37 by schorsch, Sun Mar 6 01:13:18 2016 UTC vs.
Revision 2.43 by greg, Wed Oct 23 17:00:14 2019 UTC

# Line 21 | Line 21 | static int
21   sum_images(const char *fspec, const CMATRIX *cv, FILE *fout)
22   {
23          int     myDT = DTfromHeader;
24 <        COLOR   *scanline = NULL;
24 >        COLR    *scanline = NULL;
25          CMATRIX *pmat = NULL;
26          int     myXR=0, myYR=0;
27          int     i, y;
# Line 30 | Line 30 | sum_images(const char *fspec, const CMATRIX *cv, FILE
30                  error(INTERNAL, "expected vector in sum_images()");
31          for (i = 0; i < cv->nrows; i++) {
32                  const COLORV    *scv = cv_lval(cv,i);
33 +                int             flat_file = 0;
34                  char            fname[1024];
35                  FILE            *fp;
36 +                long            data_start;
37                  int             dt, xr, yr;
38                  COLORV          *psp;
39                  char            *err;
# Line 46 | Line 48 | sum_images(const char *fspec, const CMATRIX *cv, FILE
48                          error(SYSTEM, errmsg);
49                  }
50                  dt = DTfromHeader;
51 <                if ((err = cm_getheader(&dt, NULL, NULL, fp)) != NULL)
51 >                if ((err = cm_getheader(&dt, NULL, NULL, NULL, fp)) != NULL)
52                          error(USER, err);
53                  if ((dt != DTrgbe) & (dt != DTxyze) ||
54                                  !fscnresolu(&xr, &yr, fp)) {
# Line 56 | Line 58 | sum_images(const char *fspec, const CMATRIX *cv, FILE
58                  if (myDT == DTfromHeader) {             /* on first one */
59                          myDT = dt;
60                          myXR = xr; myYR = yr;
61 <                        scanline = (COLOR *)malloc(sizeof(COLOR)*myXR);
61 >                        scanline = (COLR *)malloc(sizeof(COLR)*myXR);
62                          if (scanline == NULL)
63                                  error(SYSTEM, "out of memory in sum_images()");
64                          pmat = cm_alloc(myYR, myXR);
# Line 70 | Line 72 | sum_images(const char *fspec, const CMATRIX *cv, FILE
72                                          fname);
73                          error(USER, errmsg);
74                  }
75 +                                                        /* flat file check */
76 +                if ((data_start = ftell(fp)) > 0 && fseek(fp, 0L, SEEK_END) == 0) {
77 +                        flat_file = (ftell(fp) == data_start + sizeof(COLR)*xr*yr);
78 +                        if (fseek(fp, data_start, SEEK_SET) < 0) {
79 +                                sprintf(errmsg, "cannot seek on picture '%s'", fname);
80 +                                error(SYSTEM, errmsg);
81 +                        }
82 +                }
83                  psp = pmat->cmem;
84                  for (y = 0; y < yr; y++) {              /* read it in */
85 +                        COLOR   col;
86                          int     x;
87 <                        if (freadscan(scanline, xr, fp) < 0) {
87 >                        if (flat_file ? getbinary(scanline, sizeof(COLR), xr, fp) != xr :
88 >                                        freadcolrs(scanline, xr, fp) < 0) {
89                                  sprintf(errmsg, "error reading picture '%s'",
90                                                  fname);
91                                  error(SYSTEM, errmsg);
92                          }
93                                                          /* sum in scanline */
94                          for (x = 0; x < xr; x++, psp += 3) {
95 <                                multcolor(scanline[x], scv);
96 <                                addcolor(psp, scanline[x]);
95 >                                if (!scanline[x][EXP])
96 >                                        continue;       /* skip zeroes */
97 >                                colr_color(col, scanline[x]);
98 >                                multcolor(col, scv);
99 >                                addcolor(psp, col);
100                          }
101                  }
102                  fclose(fp);                             /* done this picture */
# Line 172 | Line 187 | main(int argc, char *argv[])
187                          case 'a':
188                                  outfmt = DTascii;
189                                  break;
190 +                        case 'c':
191 +                                outfmt = DTrgbe;
192 +                                break;
193                          default:
194                                  goto userr;
195                          }
# Line 232 | Line 250 | main(int argc, char *argv[])
250                          for (i = 0; i < nsteps; i++) {
251                                  CMATRIX *cvec = cm_column(cmtx, i);
252                                  if (ofspec != NULL) {
253 <                                        sprintf(fnbuf, ofspec, i+1);
253 >                                        sprintf(fnbuf, ofspec, i);
254                                          if ((ofp = fopen(fnbuf, "wb")) == NULL) {
255                                                  fprintf(stderr,
256                                          "%s: cannot open '%s' for output\n",
# Line 243 | Line 261 | main(int argc, char *argv[])
261                                          printargs(argc, argv, ofp);
262                                          fputnow(ofp);
263                                  }
264 <                                fprintf(ofp, "FRAME=%d\n", i+1);
264 >                                fprintf(ofp, "FRAME=%d\n", i);
265                                  if (!sum_images(argv[a], cvec, ofp))
266                                          return(1);
267                                  if (ofspec != NULL) {
# Line 267 | Line 285 | main(int argc, char *argv[])
285                          const char      *wtype = (outfmt==DTascii) ? "w" : "wb";
286                          for (i = 0; i < nsteps; i++) {
287                                  CMATRIX *rvec = cm_column(rmtx, i);
288 <                                sprintf(fnbuf, ofspec, i+1);
288 >                                sprintf(fnbuf, ofspec, i);
289                                  if ((ofp = fopen(fnbuf, wtype)) == NULL) {
290                                          fprintf(stderr,
291                                          "%s: cannot open '%s' for output\n",
# Line 281 | Line 299 | main(int argc, char *argv[])
299                                          newheader("RADIANCE", ofp);
300                                          printargs(argc, argv, ofp);
301                                          fputnow(ofp);
302 <                                        fprintf(ofp, "FRAME=%d\n", i+1);
302 >                                        fprintf(ofp, "FRAME=%d\n", i);
303                                          fprintf(ofp, "NROWS=%d\n", rvec->nrows);
304                                          fputs("NCOLS=1\nNCOMP=3\n", ofp);
305 +                                        if ((outfmt == 'f') | (outfmt == 'd'))
306 +                                                fputendian(ofp);
307                                          fputformat((char *)cm_fmt_id[outfmt], ofp);
308                                          fputc('\n', ofp);
309                                  }
# Line 310 | Line 330 | main(int argc, char *argv[])
330                                  fprintf(ofp, "NROWS=%d\n", rmtx->nrows);
331                                  fprintf(ofp, "NCOLS=%d\n", rmtx->ncols);
332                                  fputs("NCOMP=3\n", ofp);
333 +                                if ((outfmt == 'f') | (outfmt == 'd'))
334 +                                        fputendian(ofp);
335                                  fputformat((char *)cm_fmt_id[outfmt], ofp);
336                                  fputc('\n', ofp);
337                          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines