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.1 by greg, Wed Jun 17 20:41:47 2009 UTC vs.
Revision 2.40 by greg, Fri Mar 1 01:00:03 2019 UTC

# Line 8 | Line 8 | static const char RCSid[] = "$Id$";
8   */
9  
10   #include <ctype.h>
11 + #include "platform.h"
12   #include "standard.h"
13 + #include "cmatrix.h"
14   #include "platform.h"
13 #include "color.h"
15   #include "resolu.h"
15 #include "bsdf.h"
16  
17   char    *progname;                      /* global argv[0] */
18  
19 < /* Data types for matrix loading */
20 < enum {DTfromHeader, DTascii, DTfloat, DTdouble, DTrgbe, DTxyze};
21 <
22 < /* A color coefficient matrix -- vectors have ncols==1 */
23 < typedef struct {
24 <        int     nrows, ncols;
25 <        COLORV  cmem[3];                /* extends struct */
26 < } CMATRIX;
27 <
28 < #define COLSPEC (sizeof(COLORV)==sizeof(float) ? "%f %f %f" : "%lf %lf %lf")
29 <
30 < #define cm_lval(cm,r,c) ((cm)->cmem + 3*((r)*(cm)->ncols + (c)))
31 <
32 < #define cv_lval(cm,i)   ((cm)->cmem + 3*(i))
33 <
34 < /* Allocate a color coefficient matrix */
35 < static CMATRIX *
36 < cm_alloc(int nrows, int ncols)
37 < {
38 <        CMATRIX *cm;
39 <
40 <        if ((nrows <= 0) | (ncols <= 0))
41 <                return(NULL);
42 <        cm = (CMATRIX *)malloc(sizeof(CMATRIX) +
43 <                                3*sizeof(COLORV)*(nrows*ncols - 1));
44 <        if (cm == NULL)
45 <                error(SYSTEM, "out of memory in cm_alloc()");
46 <        cm->nrows = nrows;
47 <        cm->ncols = ncols;
48 <        return(cm);
49 < }
50 <
51 < #define cm_free(cm)     free(cm)
52 <
53 < /* Resize color coefficient matrix */
54 < static CMATRIX *
55 < cm_resize(CMATRIX *cm, int nrows)
56 < {
57 <        if (nrows == cm->nrows)
58 <                return(cm);
59 <        if (nrows <= 0) {
60 <                cm_free(cm);
61 <                return(NULL);
62 <        }
63 <        cm = (CMATRIX *)realloc(cm, sizeof(CMATRIX) +
64 <                        3*sizeof(COLORV)*(nrows*cm->ncols - 1));
65 <        if (cm == NULL)
66 <                error(SYSTEM, "out of memory in cm_resize()");
67 <        cm->nrows = nrows;
68 <        return(cm);
69 < }
70 <
71 < /* Load header to obtain data type */
19 > /* Sum together a set of images and write result to fout */
20   static int
21 < getDT(char *s, void *p)
21 > sum_images(const char *fspec, const CMATRIX *cv, FILE *fout)
22   {
75        char    fmt[32];
76        
77        if (formatval(fmt, s)) {
78                if (!strcmp(fmt, "ascii"))
79                        *((int *)p) = DTascii;
80                else if (!strcmp(fmt, "float"))
81                        *((int *)p) = DTfloat;
82                else if (!strcmp(fmt, "double"))
83                        *((int *)p) = DTdouble;
84                else if (!strcmp(fmt, COLRFMT))
85                        *((int *)p) = DTrgbe;
86                else if (!strcmp(fmt, CIEFMT))
87                        *((int *)p) = DTxyze;
88        }
89        return(0);
90 }
91
92 static int
93 getDTfromHeader(FILE *fp)
94 {
95        int     dt = DTfromHeader;
96        
97        if (getheader(fp, getDT, &dt) < 0)
98                error(SYSTEM, "header read error");
99        if (dt == DTfromHeader)
100                error(USER, "missing data format in header");
101        return(dt);
102 }
103
104 /* Allocate and load a matrix from the given file (or stdin if NULL) */
105 static CMATRIX *
106 cm_load(const char *fname, int nrows, int ncols, int dtype)
107 {
108        CMATRIX *cm;
109        FILE    *fp = stdin;
110
111        if (fname == NULL)
112                fname = "<stdin>";
113        else if ((fp = fopen(fname, "r")) == NULL) {
114                sprintf(errmsg, "cannot open file '%s'", fname);
115                error(SYSTEM, errmsg);
116        }
117        if (dtype != DTascii)
118                SET_FILE_BINARY(fp);
119        if (dtype == DTfromHeader)
120                dtype = getDTfromHeader(fp);
121        switch (dtype) {
122        case DTascii:
123        case DTfloat:
124        case DTdouble:
125                break;
126        default:
127                error(USER, "unexpected data type in cm_load()");
128                return(NULL);
129        }
130        if (nrows <= 0) {                       /* don't know length? */
131                int     guessrows = 147;        /* usually big enough */
132                if ((dtype != DTascii) & (fp != stdin)) {
133                        long    startpos = ftell(fp);
134                        if (fseek(fp, 0L, SEEK_END) == 0) {
135                                long    endpos = ftell(fp);
136                                long    elemsiz = 3*(dtype==DTfloat ?
137                                            sizeof(float) : sizeof(double));
138                                guessrows = (endpos - startpos)/elemsiz;
139                                if (fseek(fp, startpos, SEEK_SET) < 0) {
140                                        sprintf(errmsg,
141                                                "fseek() error on file '%s'",
142                                                        fname);
143                                        error(SYSTEM, errmsg);
144                                }
145                                if ((endpos - startpos) % elemsiz == 0)
146                                        nrows = guessrows;      /* confident */
147                        }
148                }
149                cm = cm_alloc(guessrows, ncols);
150        } else
151                cm = cm_alloc(nrows, ncols);
152        if (cm == NULL)
153                return(NULL);
154        if (dtype == DTascii) {                         /* read text file */
155                int     maxrow = (nrows > 0 ? nrows : 32000);
156                int     r, c;
157                for (r = 0; r < maxrow; r++) {
158                    if (r >= cm->nrows)         /* need more space? */
159                        cm = cm_resize(cm, 2*cm->nrows);
160                    for (c = 0; c < ncols; c++) {
161                        COLORV  *cv = cm_lval(cm,r,c);
162                        if (fscanf(fp, COLSPEC, cv, cv+1, cv+2) != 3)
163                                if ((nrows <= 0) & (r > 0) & (c == 0)) {
164                                        cm = cm_resize(cm, maxrow=r);
165                                        break;
166                                } else
167                                        goto EOFerror;
168                    }
169                }
170                while ((c = getc(fp)) != EOF)
171                        if (!isspace(c)) {
172                                sprintf(errmsg,
173                                "unexpected data at end of ascii file %s",
174                                                fname);
175                                error(WARNING, errmsg);
176                                break;
177                        }
178        } else {                                        /* read binary file */
179                if (sizeof(COLORV) == (dtype==DTfloat ? sizeof(float) :
180                                                        sizeof(double))) {
181                        int     nread = 0;
182                        do {                            /* read all we can */
183                                nread += fread(cm->cmem + 3*nread,
184                                                3*sizeof(COLORV),
185                                                cm->nrows*cm->ncols - nread,
186                                                fp);
187                                if (nrows <= 0) {       /* unknown length */
188                                        if (nread == cm->nrows*cm->ncols)
189                                                        /* need more space? */
190                                                cm = cm_resize(cm, 2*cm->nrows);
191                                        else if (nread % cm->ncols == 0)
192                                                        /* seem to be  done */
193                                                cm = cm_resize(cm, nread/cm->ncols);
194                                        else            /* ended mid-row */
195                                                goto EOFerror;
196                                } else if (nread < cm->nrows*cm->ncols)
197                                        goto EOFerror;
198                        } while (nread < cm->nrows*cm->ncols);
199
200                } else if (dtype == DTdouble) {
201                        double  dc[3];                  /* load from double */
202                        COLORV  *cvp = cm->cmem;
203                        int     n = nrows*ncols;
204
205                        if (n <= 0)
206                                goto not_handled;
207                        while (n--) {
208                                if (fread(dc, sizeof(double), 3, fp) != 3)
209                                        goto EOFerror;
210                                copycolor(cvp, dc);
211                                cvp += 3;
212                        }
213
214                } else /* dtype == DTfloat */ {
215                        float   fc[3];                  /* load from float */
216                        COLORV  *cvp = cm->cmem;
217                        int     n = nrows*ncols;
218
219                        if (n <= 0)
220                                goto not_handled;
221                        while (n--) {
222                                if (fread(fc, sizeof(float), 3, fp) != 3)
223                                        goto EOFerror;
224                                copycolor(cvp, fc);
225                                cvp += 3;
226                        }
227                }
228                if (getc(fp) != EOF) {
229                                sprintf(errmsg,
230                                "unexpected data at end of binary file %s",
231                                                fname);
232                                error(WARNING, errmsg);
233                }
234        }
235        if (fp != stdin)
236                fclose(fp);
237        return(cm);
238 EOFerror:
239        sprintf(errmsg, "unexpected EOF reading %s",
240                        fname);
241        error(USER, errmsg);
242 not_handled:
243        error(INTERNAL, "unhandled data size or length in cm_load()");
244        return(NULL);   /* gratis return */
245 }
246
247 /* Multiply two matrices (or a matrix and a vector) and allocate the result*/
248 static CMATRIX *
249 cm_multiply(const CMATRIX *cm1, const CMATRIX *cm2)
250 {
251        CMATRIX *cmr;
252        int     dr, dc, i;
253
254        if ((cm1->ncols <= 0) | (cm1->ncols != cm2->nrows))
255                error(INTERNAL, "matrix dimension mismatch in cm_multiply()");
256        cmr = cm_alloc(cm1->nrows, cm2->ncols);
257        if (cmr == NULL)
258                return(NULL);
259        for (dr = 0; dr < cmr->nrows; dr++)
260            for (dc = 0; dc < cmr->ncols; dc++) {
261                COLORV  *dp = cm_lval(cmr,dr,dc);
262                dp[0] = dp[1] = dp[2] = 0;
263                for (i = 0; i < cm1->ncols; i++) {
264                    const COLORV        *cp1 = cm_lval(cm1,dr,i);
265                    const COLORV        *cp2 = cm_lval(cm2,i,dc);
266                    dp[0] += cp1[0] * cp2[0];
267                    dp[1] += cp1[1] * cp2[1];
268                    dp[2] += cp1[2] * cp2[2];
269                }
270            }
271        return(cmr);
272 }
273
274 /* print out matrix as ASCII text -- no header */
275 static void
276 cm_print(const CMATRIX *cm, FILE *fp)
277 {
278        int             r, c;
279        const COLORV    *mp = cm->cmem;
280        
281        for (r = 0; r < cm->nrows; r++) {
282                for (c = 0; c < cm->ncols; c++, mp += 3)
283                        fprintf(fp, "\t%.6e %.6e %.6e", mp[0], mp[1], mp[2]);
284                fputc('\n', fp);
285        }
286 }
287
288 /* convert a BSDF to our matrix representation */
289 static CMATRIX *
290 cm_bsdf(const struct BSDF_data *bsdf)
291 {
292        CMATRIX *cm = cm_alloc(bsdf->nout, bsdf->ninc);
293        COLORV  *mp = cm->cmem;
294        int     r, c;
295        
296        for (r = 0; r < cm->nrows; r++)
297                for (c = 0; c < cm->ncols; c++, mp += 3)
298                        mp[0] = mp[1] = mp[2] = BSDF_value(bsdf,c,r);
299        return(cm);
300 }
301
302 /* Sum together a set of images and write result to stdout */
303 static int
304 sum_images(const char *fspec, const CMATRIX *cv)
305 {
23          int     myDT = DTfromHeader;
24 <        CMATRIX *pmat;
25 <        COLOR   *scanline;
26 <        int     myXR, myYR;
24 >        COLR    *scanline = NULL;
25 >        CMATRIX *pmat = NULL;
26 >        int     myXR=0, myYR=0;
27          int     i, y;
28  
29          if (cv->ncols != 1)
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;
40 +                                                        /* check for zero */
41 +                if ((scv[RED] == 0) & (scv[GRN] == 0) & (scv[BLU] == 0) &&
42 +                                (myDT != DTfromHeader) | (i < cv->nrows-1))
43 +                        continue;
44                                                          /* open next picture */
45                  sprintf(fname, fspec, i);
46 <                if ((fp = fopen(fname, "r")) == NULL) {
46 >                if ((fp = fopen(fname, "rb")) == NULL) {
47                          sprintf(errmsg, "cannot open picture '%s'", fname);
48                          error(SYSTEM, errmsg);
49                  }
50 <                SET_FILE_BINARY(fp);
51 <                dt = getDTfromHeader(fp);
50 >                dt = DTfromHeader;
51 >                if ((err = cm_getheader(&dt, NULL, NULL, fp)) != NULL)
52 >                        error(USER, err);
53                  if ((dt != DTrgbe) & (dt != DTxyze) ||
54                                  !fscnresolu(&xr, &yr, fp)) {
55                          sprintf(errmsg, "file '%s' not a picture", fname);
# Line 333 | Line 58 | sum_images(const char *fspec, const CMATRIX *cv)
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);
65                          memset(pmat->cmem, 0, sizeof(COLOR)*myXR*myYR);
66 +                                                        /* finish header */
67 +                        fputformat((char *)cm_fmt_id[myDT], fout);
68 +                        fputc('\n', fout);
69 +                        fflush(fout);
70                  } else if ((dt != myDT) | (xr != myXR) | (yr != myYR)) {
71                          sprintf(errmsg, "picture '%s' format/size mismatch",
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 */
103          }
104          free(scanline);
105 <                                                        /* finish header */
106 <        fputformat(myDT==DTrgbe ? COLRFMT : CIEFMT, stdout);
107 <        fputc('\n', stdout);
366 <        fprtresolu(myXR, myYR, stdout);
367 <                                                        /* write scanlines */
368 <        for (y = 0; y < myYR; y++)
369 <                if (fwritescan((COLOR *)cm_lval(pmat, y, 0), myXR, stdout) < 0)
370 <                        return(0);
371 <        cm_free(pmat);                                  /* all done */
372 <        return(fflush(stdout) == 0);
105 >        i = cm_write(pmat, myDT, fout);                 /* write picture */
106 >        cm_free(pmat);                                  /* free data */
107 >        return(i);
108   }
109  
110 < /* check to see if a string contains a %d specification */
111 < int
112 < hasDecimalSpec(const char *s)
110 > /* check to see if a string contains a %d or %o specification */
111 > static int
112 > hasNumberFormat(const char *s)
113   {
114 <        while (*s && *s != '%')
380 <                s++;
381 <        if (!*s)
114 >        if (s == NULL)
115                  return(0);
383        do
384                ++s;
385        while (isdigit(*s));
116  
117 <        return(*s == 'd');
117 >        while (*s) {
118 >                while (*s != '%')
119 >                        if (!*s++)
120 >                                return(0);
121 >                if (*++s == '%') {              /* ignore "%%" */
122 >                        ++s;
123 >                        continue;
124 >                }
125 >                while (isdigit(*s))             /* field length */
126 >                        ++s;
127 >                                                /* field we'll use? */
128 >                if ((*s == 'd') | (*s == 'i') | (*s == 'o') |
129 >                                        (*s == 'x') | (*s == 'X'))
130 >                        return(1);
131 >        }
132 >        return(0);                              /* didn't find one */
133   }
134  
135   int
136   main(int argc, char *argv[])
137   {
138 <        CMATRIX                 *tvec, *Dmat, *Tmat, *vtmp, *cvec;
139 <        struct BSDF_data        *btdf;
138 >        int             skyfmt = DTfromHeader;
139 >        int             outfmt = DTascii;
140 >        int             headout = 1;
141 >        int             nsteps = 0;
142 >        char            *ofspec = NULL;
143 >        FILE            *ofp = stdout;
144 >        CMATRIX         *cmtx;          /* component vector/matrix result */
145 >        char            fnbuf[256];
146 >        int             a, i;
147  
148          progname = argv[0];
149 +                                        /* get options */
150 +        for (a = 1; a < argc && argv[a][0] == '-'; a++)
151 +                switch (argv[a][1]) {
152 +                case 'n':
153 +                        nsteps = atoi(argv[++a]);
154 +                        if (nsteps < 0)
155 +                                goto userr;
156 +                        skyfmt = nsteps ? DTascii : DTfromHeader;
157 +                        break;
158 +                case 'h':
159 +                        headout = !headout;
160 +                        break;
161 +                case 'i':
162 +                        switch (argv[a][2]) {
163 +                        case 'f':
164 +                                skyfmt = DTfloat;
165 +                                break;
166 +                        case 'd':
167 +                                skyfmt = DTdouble;
168 +                                break;
169 +                        case 'a':
170 +                                skyfmt = DTascii;
171 +                                break;
172 +                        default:
173 +                                goto userr;
174 +                        }
175 +                        break;
176 +                case 'o':
177 +                        switch (argv[a][2]) {
178 +                        case '\0':      /* output specification (not format) */
179 +                                ofspec = argv[++a];
180 +                                break;
181 +                        case 'f':
182 +                                outfmt = DTfloat;
183 +                                break;
184 +                        case 'd':
185 +                                outfmt = DTdouble;
186 +                                break;
187 +                        case 'a':
188 +                                outfmt = DTascii;
189 +                                break;
190 +                        default:
191 +                                goto userr;
192 +                        }
193 +                        break;
194 +                default:
195 +                        goto userr;
196 +                }
197 +        if ((argc-a < 1) | (argc-a > 4))
198 +                goto userr;
199  
200 <        if ((argc < 4) | (argc > 5)) {
201 <                fprintf(stderr, "Usage: %s Vspec Tbsdf.xml Dmat.dat [tregvec]\n",
202 <                                progname);
203 <                return(1);
200 >        if (argc-a > 2) {                       /* VTDs expression */
201 >                CMATRIX         *smtx, *Dmat, *Tmat, *imtx;
202 >                const char      *ccp;
203 >                                                /* get sky vector/matrix */
204 >                smtx = cm_load(argv[a+3], 0, nsteps, skyfmt);
205 >                nsteps = smtx->ncols;
206 >                                                /* load BSDF */
207 >                if (argv[a+1][0] != '!' &&
208 >                                (ccp = strrchr(argv[a+1], '.')) != NULL &&
209 >                                !strcasecmp(ccp+1, "XML"))
210 >                        Tmat = cm_loadBTDF(argv[a+1]);
211 >                else
212 >                        Tmat = cm_load(argv[a+1], 0, 0, DTfromHeader);
213 >                                                /* load Daylight matrix */
214 >                Dmat = cm_load(argv[a+2], Tmat->ncols,
215 >                                        smtx->nrows, DTfromHeader);
216 >                                                /* multiply vector through */
217 >                imtx = cm_multiply(Dmat, smtx);
218 >                cm_free(Dmat); cm_free(smtx);
219 >                cmtx = cm_multiply(Tmat, imtx);
220 >                cm_free(Tmat);
221 >                cm_free(imtx);
222 >        } else {                                /* sky vector/matrix only */
223 >                cmtx = cm_load(argv[a+1], 0, nsteps, skyfmt);
224 >                nsteps = cmtx->ncols;
225          }
226 <        tvec = cm_load(argv[4], 0, 1, DTascii); /* argv[4]==NULL iff argc==4 */
227 <        Dmat = cm_load(argv[3], 0, tvec->nrows, DTfromHeader);
228 <        btdf = load_BSDF(argv[2]);
229 <        if (btdf == NULL)
407 <                return(1);
408 <        if (btdf->ninc != Dmat->nrows) {
409 <                sprintf(errmsg, "Incoming BTDF dir (%d) mismatch to D (%d)",
410 <                                btdf->ninc, Dmat->nrows);
411 <                error(USER, errmsg);
226 >                                                /* prepare output stream */
227 >        if ((ofspec != NULL) & (nsteps == 1) && hasNumberFormat(ofspec)) {
228 >                sprintf(fnbuf, ofspec, 1);
229 >                ofspec = fnbuf;
230          }
231 <                                                /* multiply vector through */
232 <        vtmp = cm_multiply(Dmat, tvec);
233 <        cm_free(Dmat); cm_free(tvec);
234 <        Tmat = cm_bsdf(btdf);                   /* convert BTDF to matrix */
417 <        free_BSDF(btdf);
418 <        cvec = cm_multiply(Tmat, vtmp);         /* cvec = component vector */
419 <        cm_free(Tmat); cm_free(vtmp);
420 <        if (hasDecimalSpec(argv[1])) {          /* generating image */
421 <                SET_FILE_BINARY(stdout);
422 <                newheader("RADIANCE", stdout);
423 <                printargs(argc, argv, stdout);
424 <                fputnow(stdout);
425 <                if (!sum_images(argv[1], cvec))
231 >        if (ofspec != NULL && !hasNumberFormat(ofspec)) {
232 >                if ((ofp = fopen(ofspec, "w")) == NULL) {
233 >                        fprintf(stderr, "%s: cannot open '%s' for output\n",
234 >                                        progname, ofspec);
235                          return(1);
236 <        } else {                                /* generating vector */
237 <                CMATRIX *Vmat = cm_load(argv[1], 0, cvec->nrows, DTfromHeader);
238 <                CMATRIX *rvec = cm_multiply(Vmat, cvec);
236 >                }
237 >                ofspec = NULL;                  /* only need to open once */
238 >        }
239 >        if (hasNumberFormat(argv[a])) {         /* generating image(s) */
240 >                if (ofspec == NULL) {
241 >                        SET_FILE_BINARY(ofp);
242 >                        newheader("RADIANCE", ofp);
243 >                        printargs(argc, argv, ofp);
244 >                        fputnow(ofp);
245 >                }
246 >                if (nsteps > 1)                 /* multiple output frames? */
247 >                        for (i = 0; i < nsteps; i++) {
248 >                                CMATRIX *cvec = cm_column(cmtx, i);
249 >                                if (ofspec != NULL) {
250 >                                        sprintf(fnbuf, ofspec, i);
251 >                                        if ((ofp = fopen(fnbuf, "wb")) == NULL) {
252 >                                                fprintf(stderr,
253 >                                        "%s: cannot open '%s' for output\n",
254 >                                                        progname, fnbuf);
255 >                                                return(1);
256 >                                        }
257 >                                        newheader("RADIANCE", ofp);
258 >                                        printargs(argc, argv, ofp);
259 >                                        fputnow(ofp);
260 >                                }
261 >                                fprintf(ofp, "FRAME=%d\n", i);
262 >                                if (!sum_images(argv[a], cvec, ofp))
263 >                                        return(1);
264 >                                if (ofspec != NULL) {
265 >                                        if (fclose(ofp) == EOF) {
266 >                                                fprintf(stderr,
267 >                                                "%s: error writing to '%s'\n",
268 >                                                        progname, fnbuf);
269 >                                                return(1);
270 >                                        }
271 >                                        ofp = stdout;
272 >                                }
273 >                                cm_free(cvec);
274 >                        }
275 >                else if (!sum_images(argv[a], cmtx, ofp))
276 >                        return(1);
277 >        } else {                                /* generating vector/matrix */
278 >                CMATRIX *Vmat = cm_load(argv[a], 0, cmtx->nrows, DTfromHeader);
279 >                CMATRIX *rmtx = cm_multiply(Vmat, cmtx);
280                  cm_free(Vmat);
281 <                cm_print(rvec, stdout);
282 <                cm_free(rvec);
281 >                if (ofspec != NULL) {           /* multiple vector files? */
282 >                        const char      *wtype = (outfmt==DTascii) ? "w" : "wb";
283 >                        for (i = 0; i < nsteps; i++) {
284 >                                CMATRIX *rvec = cm_column(rmtx, i);
285 >                                sprintf(fnbuf, ofspec, i);
286 >                                if ((ofp = fopen(fnbuf, wtype)) == NULL) {
287 >                                        fprintf(stderr,
288 >                                        "%s: cannot open '%s' for output\n",
289 >                                                        progname, fnbuf);
290 >                                        return(1);
291 >                                }
292 > #ifdef getc_unlocked
293 >                                flockfile(ofp);
294 > #endif
295 >                                if (headout) {  /* header output */
296 >                                        newheader("RADIANCE", ofp);
297 >                                        printargs(argc, argv, ofp);
298 >                                        fputnow(ofp);
299 >                                        fprintf(ofp, "FRAME=%d\n", i);
300 >                                        fprintf(ofp, "NROWS=%d\n", rvec->nrows);
301 >                                        fputs("NCOLS=1\nNCOMP=3\n", ofp);
302 >                                        fputformat((char *)cm_fmt_id[outfmt], ofp);
303 >                                        fputc('\n', ofp);
304 >                                }
305 >                                cm_write(rvec, outfmt, ofp);
306 >                                if (fclose(ofp) == EOF) {
307 >                                        fprintf(stderr,
308 >                                                "%s: error writing to '%s'\n",
309 >                                                        progname, fnbuf);
310 >                                        return(1);
311 >                                }
312 >                                ofp = stdout;
313 >                                cm_free(rvec);
314 >                        }
315 >                } else {
316 > #ifdef getc_unlocked
317 >                        flockfile(ofp);
318 > #endif
319 >                        if (outfmt != DTascii)
320 >                                SET_FILE_BINARY(ofp);
321 >                        if (headout) {          /* header output */
322 >                                newheader("RADIANCE", ofp);
323 >                                printargs(argc, argv, ofp);
324 >                                fputnow(ofp);
325 >                                fprintf(ofp, "NROWS=%d\n", rmtx->nrows);
326 >                                fprintf(ofp, "NCOLS=%d\n", rmtx->ncols);
327 >                                fputs("NCOMP=3\n", ofp);
328 >                                fputformat((char *)cm_fmt_id[outfmt], ofp);
329 >                                fputc('\n', ofp);
330 >                        }
331 >                        cm_write(rmtx, outfmt, ofp);
332 >                }
333 >                cm_free(rmtx);
334          }
335 <        cm_free(cvec);                          /* final clean-up */
335 >        if (fflush(ofp) == EOF) {               /* final clean-up */
336 >                fprintf(stderr, "%s: write error on output\n", progname);
337 >                return(1);
338 >        }
339 >        cm_free(cmtx);
340          return(0);
341 + userr:
342 +        fprintf(stderr, "Usage: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] DCspec [skyf]\n",
343 +                                progname);
344 +        fprintf(stderr, "   or: %s [-n nsteps][-o ospec][-i{f|d|h}][-o{f|d}] Vspec Tbsdf Dmat.dat [skyf]\n",
345 +                                progname);
346 +        return(1);
347   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines