ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/cv/pabopto2bsdf.c
Revision: 2.6
Committed: Sat Oct 19 00:11:50 2013 UTC (10 years, 6 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.5: +75 -1 lines
Log Message:
Fixed overflow and tweaked culling operations

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: pabopto2bsdf.c,v 2.5 2013/09/12 16:09:31 greg Exp $";
3 #endif
4 /*
5 * Load measured BSDF data in PAB-Opto format.
6 *
7 * G. Ward
8 */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <ctype.h>
14 #include <math.h>
15 #include "platform.h"
16 #include "bsdfrep.h"
17 /* global argv[0] */
18 char *progname;
19
20 typedef struct {
21 const char *fname; /* input file path */
22 double theta, phi; /* incident angles (in degrees) */
23 int isDSF; /* data is DSF (rather than BSDF)? */
24 long dstart; /* data start offset in file */
25 } PGINPUT;
26
27 PGINPUT *inpfile; /* input files sorted by incidence */
28 int ninpfiles; /* number of input files */
29
30 /* Compare incident angles */
31 static int
32 cmp_inang(const void *p1, const void *p2)
33 {
34 const PGINPUT *inp1 = (const PGINPUT *)p1;
35 const PGINPUT *inp2 = (const PGINPUT *)p2;
36
37 if (inp1->theta > inp2->theta+FTINY)
38 return(1);
39 if (inp1->theta < inp2->theta-FTINY)
40 return(-1);
41 if (inp1->phi > inp2->phi+FTINY)
42 return(1);
43 if (inp1->phi < inp2->phi-FTINY)
44 return(-1);
45 return(0);
46 }
47
48 /* Prepare a PAB-Opto input file by reading its header */
49 static int
50 init_pabopto_inp(const int i, const char *fname)
51 {
52 FILE *fp = fopen(fname, "r");
53 char buf[2048];
54 int c;
55
56 if (fp == NULL) {
57 fputs(fname, stderr);
58 fputs(": cannot open\n", stderr);
59 return(0);
60 }
61 inpfile[i].fname = fname;
62 inpfile[i].isDSF = -1;
63 inpfile[i].theta = inpfile[i].phi = -10001.;
64 /* read header information */
65 while ((c = getc(fp)) == '#' || c == EOF) {
66 char typ[32];
67 if (fgets(buf, sizeof(buf), fp) == NULL) {
68 fputs(fname, stderr);
69 fputs(": unexpected EOF\n", stderr);
70 fclose(fp);
71 return(0);
72 }
73 if (sscanf(buf, "format: theta phi %s", typ) == 1) {
74 if (!strcasecmp(typ, "DSF")) {
75 inpfile[i].isDSF = 1;
76 continue;
77 }
78 if (!strcasecmp(typ, "BSDF")) {
79 inpfile[i].isDSF = 0;
80 continue;
81 }
82 }
83 if (sscanf(buf, "intheta %lf", &inpfile[i].theta) == 1)
84 continue;
85 if (sscanf(buf, "inphi %lf", &inpfile[i].phi) == 1)
86 continue;
87 if (sscanf(buf, "incident_angle %lf %lf",
88 &inpfile[i].theta, &inpfile[i].phi) == 2)
89 continue;
90 }
91 inpfile[i].dstart = ftell(fp) - 1;
92 fclose(fp);
93 if (inpfile[i].isDSF < 0) {
94 fputs(fname, stderr);
95 fputs(": unknown format\n", stderr);
96 return(0);
97 }
98 if ((inpfile[i].theta < -10000.) | (inpfile[i].phi < -10000.)) {
99 fputs(fname, stderr);
100 fputs(": unknown incident angle\n", stderr);
101 return(0);
102 }
103 while (inpfile[i].phi < 0) /* normalize phi direction */
104 inpfile[i].phi += 360.;
105 return(1);
106 }
107
108 /* Load a set of measurements corresponding to a particular incident angle */
109 static int
110 add_pabopto_inp(const int i)
111 {
112 FILE *fp = fopen(inpfile[i].fname, "r");
113 double theta_out, phi_out, val;
114 int n, c;
115
116 if (fp == NULL || fseek(fp, inpfile[i].dstart, 0) == EOF) {
117 fputs(inpfile[i].fname, stderr);
118 fputs(": cannot open\n", stderr);
119 return(0);
120 }
121 /* prepare input grid */
122 if (!i || cmp_inang(&inpfile[i-1], &inpfile[i])) {
123 if (i) /* need to process previous incidence */
124 make_rbfrep();
125 #ifdef DEBUG
126 fprintf(stderr, "New incident (theta,phi)=(%f,%f)\n",
127 inpfile[i].theta, inpfile[i].phi);
128 #endif
129 new_bsdf_data(inpfile[i].theta, inpfile[i].phi);
130 }
131 #ifdef DEBUG
132 fprintf(stderr, "Loading measurements from '%s'...\n", inpfile[i].fname);
133 #endif
134 /* read scattering data */
135 while (fscanf(fp, "%lf %lf %lf\n", &theta_out, &phi_out, &val) == 3)
136 add_bsdf_data(theta_out, phi_out, val, inpfile[i].isDSF);
137 n = 0;
138 while ((c = getc(fp)) != EOF)
139 n += !isspace(c);
140 if (n)
141 fprintf(stderr,
142 "%s: warning: %d unexpected characters past EOD\n",
143 inpfile[i].fname, n);
144 fclose(fp);
145 return(1);
146 }
147
148 #if 1
149 /* Read in PAB-Opto BSDF files and output RBF interpolant */
150 int
151 main(int argc, char *argv[])
152 {
153 extern int nprocs;
154 int i;
155 /* start header */
156 SET_FILE_BINARY(stdout);
157 newheader("RADIANCE", stdout);
158 printargs(argc, argv, stdout);
159 fputnow(stdout);
160 progname = argv[0]; /* get options */
161 while (argc > 2 && argv[1][0] == '-') {
162 switch (argv[1][1]) {
163 case 'n':
164 nprocs = atoi(argv[2]);
165 break;
166 default:
167 goto userr;
168 }
169 argv += 2; argc -= 2;
170 }
171 /* initialize & sort inputs */
172 ninpfiles = argc - 1;
173 if (ninpfiles < 2)
174 goto userr;
175 inpfile = (PGINPUT *)malloc(sizeof(PGINPUT)*ninpfiles);
176 if (inpfile == NULL)
177 return(1);
178 for (i = 0; i < ninpfiles; i++)
179 if (!init_pabopto_inp(i, argv[i+1]))
180 return(1);
181 qsort(inpfile, ninpfiles, sizeof(PGINPUT), &cmp_inang);
182 /* compile measurements */
183 for (i = 0; i < ninpfiles; i++)
184 if (!add_pabopto_inp(i))
185 return(1);
186 make_rbfrep(); /* process last data set */
187 build_mesh(); /* create interpolation */
188 save_bsdf_rep(stdout); /* write it out */
189 return(0);
190 userr:
191 fprintf(stderr, "Usage: %s [-n nproc] meas1.dat meas2.dat .. > bsdf.sir\n",
192 progname);
193 return(1);
194 }
195 #else
196 /* Test main produces a Radiance model from the given input file */
197 int
198 main(int argc, char *argv[])
199 {
200 PGINPUT pginp;
201 char buf[128];
202 FILE *pfp;
203 double bsdf, min_log;
204 FVECT dir;
205 int i, j, n;
206
207 if (argc != 2) {
208 fprintf(stderr, "Usage: %s input.dat > output.rad\n", argv[0]);
209 return(1);
210 }
211 ninpfiles = 1;
212 inpfile = &pginp;
213 if (!init_pabopto_inp(0, argv[1]) || !add_pabopto_inp(0))
214 return(1);
215 /* reduce data set */
216 make_rbfrep();
217 /* produce spheres at meas. */
218 puts("void plastic yellow\n0\n0\n5 .6 .4 .01 .04 .08\n");
219 puts("void plastic pink\n0\n0\n5 .5 .05 .9 .04 .08\n");
220 min_log = log(bsdf_min*.5);
221 n = 0;
222 for (i = 0; i < GRIDRES; i++)
223 for (j = 0; j < GRIDRES; j++)
224 if (dsf_grid[i][j].vsum > .0f) {
225 ovec_from_pos(dir, i, j);
226 bsdf = dsf_grid[i][j].vsum / dir[2];
227 if (bsdf <= bsdf_min*.6)
228 continue;
229 bsdf = log(bsdf) - min_log;
230 if (dsf_grid[i][j].nval) {
231 printf("pink cone c%04d\n0\n0\n8\n", ++n);
232 printf("\t%.6g %.6g %.6g\n",
233 dir[0]*bsdf, dir[1]*bsdf, dir[2]*bsdf);
234 printf("\t%.6g %.6g %.6g\n",
235 dir[0]*bsdf*1.02, dir[1]*bsdf*1.02,
236 dir[2]*bsdf*1.02);
237 printf("\t%.6g\t0\n", .02*bsdf);
238 } else {
239 ovec_from_pos(dir, i, j);
240 printf("yellow sphere s%04d\n0\n0\n", ++n);
241 printf("4 %.6g %.6g %.6g %.6g\n\n",
242 dir[0]*bsdf, dir[1]*bsdf, dir[2]*bsdf,
243 .01*bsdf);
244 }
245 }
246 /* output continuous surface */
247 puts("void trans tgreen\n0\n0\n7 .7 1 .7 .04 .04 .9 1\n");
248 fflush(stdout);
249 sprintf(buf, "gensurf tgreen bsdf - - - %d %d", GRIDRES-1, GRIDRES-1);
250 pfp = popen(buf, "w");
251 if (pfp == NULL) {
252 fputs(buf, stderr);
253 fputs(": cannot start command\n", stderr);
254 return(1);
255 }
256 for (i = 0; i < GRIDRES; i++)
257 for (j = 0; j < GRIDRES; j++) {
258 ovec_from_pos(dir, i, j);
259 bsdf = eval_rbfrep(dsf_list, dir) / dir[2];
260 bsdf = log(bsdf) - min_log;
261 fprintf(pfp, "%.8e %.8e %.8e\n",
262 dir[0]*bsdf, dir[1]*bsdf, dir[2]*bsdf);
263 }
264 return(pclose(pfp)==0 ? 0 : 1);
265 }
266 #endif