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.40 by greg, Fri Mar 1 01:00:03 2019 UTC vs.
Revision 2.49 by greg, Fri Mar 11 02:44:33 2022 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, NULL, fp)) != NULL)
52                          error(USER, err);
53                  if ((dt != DTrgbe) & (dt != DTxyze) ||
54                                  !fscnresolu(&xr, &yr, fp)) {
# Line 64 | Line 64 | sum_images(const char *fspec, const CMATRIX *cv, FILE
64                          pmat = cm_alloc(myYR, myXR);
65                          memset(pmat->cmem, 0, sizeof(COLOR)*myXR*myYR);
66                                                          /* finish header */
67 <                        fputformat((char *)cm_fmt_id[myDT], fout);
67 >                        fputformat(cm_fmt_id[myDT], fout);
68                          fputc('\n', fout);
69                          fflush(fout);
70                  } else if ((dt != myDT) | (xr != myXR) | (yr != myYR)) {
# Line 107 | Line 107 | sum_images(const char *fspec, const CMATRIX *cv, FILE
107          return(i);
108   }
109  
110 + /* adjust matrix dimensions according to user size(s) */
111 + static int
112 + alt_dim(CMATRIX *cm, int nr, int nc)
113 + {
114 +        if ((nr <= 0) & (nc <= 0))
115 +                return(0);
116 +        if ((nr == cm->nrows) & (nc == cm->ncols))
117 +                return(0);
118 +        if (nr > 0) {
119 +                if (nc <= 0)
120 +                        nc = cm->nrows*cm->ncols/nr;
121 +                if (nr*nc != cm->nrows*cm->ncols) {
122 +                        fprintf(stderr, "Bad dimensions: %dx%d != %dx%d\n",
123 +                                        nr, nc, cm->nrows, cm->ncols);
124 +                        return(-1);
125 +                }
126 +        } else /* nc > 0 */ {
127 +                nr = cm->nrows*cm->ncols/nc;
128 +                if (nc*nr != cm->nrows*cm->ncols) {
129 +                        fprintf(stderr, "Bad dimensions: %d does not divide %dx%d evenly\n",
130 +                                        nc, cm->nrows, cm->ncols);
131 +                        return(-1);
132 +                }
133 +        }
134 +        cm->nrows = nr;
135 +        cm->ncols = nc;
136 +        return(1);
137 + }
138 +
139   /* check to see if a string contains a %d or %o specification */
140   static int
141   hasNumberFormat(const char *s)
# Line 141 | Line 170 | main(int argc, char *argv[])
170          int             nsteps = 0;
171          char            *ofspec = NULL;
172          FILE            *ofp = stdout;
173 +        int             xres=0, yres=0;
174          CMATRIX         *cmtx;          /* component vector/matrix result */
175          char            fnbuf[256];
176          int             a, i;
# Line 187 | Line 217 | main(int argc, char *argv[])
217                          case 'a':
218                                  outfmt = DTascii;
219                                  break;
220 +                        case 'c':
221 +                                outfmt = DTrgbe;
222 +                                break;
223                          default:
224                                  goto userr;
225                          }
226                          break;
227 +                case 'x':
228 +                        xres = atoi(argv[++a]);
229 +                        break;
230 +                case 'y':
231 +                        yres = atoi(argv[++a]);
232 +                        break;
233                  default:
234                          goto userr;
235                  }
# Line 237 | Line 276 | main(int argc, char *argv[])
276                  ofspec = NULL;                  /* only need to open once */
277          }
278          if (hasNumberFormat(argv[a])) {         /* generating image(s) */
279 +                if (outfmt != DTrgbe) {
280 +                        error(WARNING, "changing output type to -oc");
281 +                        outfmt = DTrgbe;
282 +                }
283                  if (ofspec == NULL) {
284                          SET_FILE_BINARY(ofp);
285                          newheader("RADIANCE", ofp);
# Line 282 | Line 325 | main(int argc, char *argv[])
325                          const char      *wtype = (outfmt==DTascii) ? "w" : "wb";
326                          for (i = 0; i < nsteps; i++) {
327                                  CMATRIX *rvec = cm_column(rmtx, i);
328 +                                if (alt_dim(rvec, yres, xres) < 0)
329 +                                        return(1);
330                                  sprintf(fnbuf, ofspec, i);
331                                  if ((ofp = fopen(fnbuf, wtype)) == NULL) {
332                                          fprintf(stderr,
# Line 297 | Line 342 | main(int argc, char *argv[])
342                                          printargs(argc, argv, ofp);
343                                          fputnow(ofp);
344                                          fprintf(ofp, "FRAME=%d\n", i);
345 <                                        fprintf(ofp, "NROWS=%d\n", rvec->nrows);
346 <                                        fputs("NCOLS=1\nNCOMP=3\n", ofp);
347 <                                        fputformat((char *)cm_fmt_id[outfmt], ofp);
345 >                                        if ((outfmt != DTrgbe) & (outfmt != DTxyze)) {
346 >                                                fprintf(ofp, "NROWS=%d\n", rvec->nrows);
347 >                                                fprintf(ofp, "NCOLS=%d\n", rvec->ncols);
348 >                                                fputs("NCOMP=3\n", ofp);
349 >                                        }
350 >                                        if ((outfmt == DTfloat) | (outfmt == DTdouble))
351 >                                                fputendian(ofp);
352 >                                        fputformat(cm_fmt_id[outfmt], ofp);
353                                          fputc('\n', ofp);
354                                  }
355                                  cm_write(rvec, outfmt, ofp);
# Line 318 | Line 368 | main(int argc, char *argv[])
368   #endif
369                          if (outfmt != DTascii)
370                                  SET_FILE_BINARY(ofp);
371 +                        if (alt_dim(rmtx, yres, xres) < 0)
372 +                                return(1);
373                          if (headout) {          /* header output */
374                                  newheader("RADIANCE", ofp);
375                                  printargs(argc, argv, ofp);
376                                  fputnow(ofp);
377 <                                fprintf(ofp, "NROWS=%d\n", rmtx->nrows);
378 <                                fprintf(ofp, "NCOLS=%d\n", rmtx->ncols);
379 <                                fputs("NCOMP=3\n", ofp);
380 <                                fputformat((char *)cm_fmt_id[outfmt], ofp);
377 >                                if ((outfmt != DTrgbe) & (outfmt != DTxyze)) {
378 >                                        fprintf(ofp, "NROWS=%d\n", rmtx->nrows);
379 >                                        fprintf(ofp, "NCOLS=%d\n", rmtx->ncols);
380 >                                        fputs("NCOMP=3\n", ofp);
381 >                                }
382 >                                if ((outfmt == DTfloat) | (outfmt == DTdouble))
383 >                                        fputendian(ofp);
384 >                                fputformat(cm_fmt_id[outfmt], ofp);
385                                  fputc('\n', ofp);
386                          }
387                          cm_write(rmtx, outfmt, ofp);
# Line 339 | Line 395 | main(int argc, char *argv[])
395          cm_free(cmtx);
396          return(0);
397   userr:
398 <        fprintf(stderr, "Usage: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] DCspec [skyf]\n",
398 >        fprintf(stderr, "Usage: %s [-n nsteps][-o ospec][-x xr][-y yr][-i{f|d|h}][-o{f|d|c}] DCspec [skyf]\n",
399                                  progname);
400 <        fprintf(stderr, "   or: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] Vspec Tbsdf Dmat.dat [skyf]\n",
400 >        fprintf(stderr, "   or: %s [-n nsteps][-o ospec][-x xr][-y yr][-i{f|d|h}][-o{f|d|c}] Vspec Tbsdf Dmat.dat [skyf]\n",
401                                  progname);
402          return(1);
403   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines