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.39 by greg, Sat Feb 23 18:25:12 2019 UTC vs.
Revision 2.44 by greg, Wed Oct 23 17:16:26 2019 UTC

# Line 48 | 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 187 | 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 237 | Line 240 | main(int argc, char *argv[])
240                  ofspec = NULL;                  /* only need to open once */
241          }
242          if (hasNumberFormat(argv[a])) {         /* generating image(s) */
243 +                if (outfmt != DTrgbe) {
244 +                        error(WARNING, "changing output type to -oc");
245 +                        outfmt = DTrgbe;
246 +                }
247                  if (ofspec == NULL) {
248                          SET_FILE_BINARY(ofp);
249                          newheader("RADIANCE", ofp);
# Line 247 | Line 254 | main(int argc, char *argv[])
254                          for (i = 0; i < nsteps; i++) {
255                                  CMATRIX *cvec = cm_column(cmtx, i);
256                                  if (ofspec != NULL) {
257 <                                        sprintf(fnbuf, ofspec, i+1);
257 >                                        sprintf(fnbuf, ofspec, i);
258                                          if ((ofp = fopen(fnbuf, "wb")) == NULL) {
259                                                  fprintf(stderr,
260                                          "%s: cannot open '%s' for output\n",
# Line 258 | Line 265 | main(int argc, char *argv[])
265                                          printargs(argc, argv, ofp);
266                                          fputnow(ofp);
267                                  }
268 <                                fprintf(ofp, "FRAME=%d\n", i+1);
268 >                                fprintf(ofp, "FRAME=%d\n", i);
269                                  if (!sum_images(argv[a], cvec, ofp))
270                                          return(1);
271                                  if (ofspec != NULL) {
# Line 282 | Line 289 | main(int argc, char *argv[])
289                          const char      *wtype = (outfmt==DTascii) ? "w" : "wb";
290                          for (i = 0; i < nsteps; i++) {
291                                  CMATRIX *rvec = cm_column(rmtx, i);
292 <                                sprintf(fnbuf, ofspec, i+1);
292 >                                sprintf(fnbuf, ofspec, i);
293                                  if ((ofp = fopen(fnbuf, wtype)) == NULL) {
294                                          fprintf(stderr,
295                                          "%s: cannot open '%s' for output\n",
# Line 296 | Line 303 | main(int argc, char *argv[])
303                                          newheader("RADIANCE", ofp);
304                                          printargs(argc, argv, ofp);
305                                          fputnow(ofp);
306 <                                        fprintf(ofp, "FRAME=%d\n", i+1);
306 >                                        fprintf(ofp, "FRAME=%d\n", i);
307                                          fprintf(ofp, "NROWS=%d\n", rvec->nrows);
308                                          fputs("NCOLS=1\nNCOMP=3\n", ofp);
309 +                                        if ((outfmt == 'f') | (outfmt == 'd'))
310 +                                                fputendian(ofp);
311                                          fputformat((char *)cm_fmt_id[outfmt], ofp);
312                                          fputc('\n', ofp);
313                                  }
# Line 325 | Line 334 | main(int argc, char *argv[])
334                                  fprintf(ofp, "NROWS=%d\n", rmtx->nrows);
335                                  fprintf(ofp, "NCOLS=%d\n", rmtx->ncols);
336                                  fputs("NCOMP=3\n", ofp);
337 +                                if ((outfmt == 'f') | (outfmt == 'd'))
338 +                                        fputendian(ofp);
339                                  fputformat((char *)cm_fmt_id[outfmt], ofp);
340                                  fputc('\n', ofp);
341                          }
# Line 339 | Line 350 | main(int argc, char *argv[])
350          cm_free(cmtx);
351          return(0);
352   userr:
353 <        fprintf(stderr, "Usage: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] DCspec [skyf]\n",
353 >        fprintf(stderr, "Usage: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d|c}] DCspec [skyf]\n",
354                                  progname);
355 <        fprintf(stderr, "   or: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] Vspec Tbsdf Dmat.dat [skyf]\n",
355 >        fprintf(stderr, "   or: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d|c}] Vspec Tbsdf Dmat.dat [skyf]\n",
356                                  progname);
357          return(1);
358   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines