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

Comparing ray/src/cv/bsdf2ttree.c (file contents):
Revision 2.16 by greg, Wed May 15 17:29:30 2013 UTC vs.
Revision 2.22 by greg, Tue Nov 26 17:33:55 2013 UTC

# Line 12 | Line 12 | static const char RCSid[] = "$Id$";
12   #include <stdlib.h>
13   #include <math.h>
14   #include "platform.h"
15 + #include "rtprocess.h"
16   #include "calcomp.h"
17   #include "bsdfrep.h"
18                                  /* global argv[0] */
# Line 24 | Line 25 | int                    samp_order = 6;
25   const double            ssamp_thresh = 0.35;
26                                  /* number of super-samples */
27   const int               nssamp = 100;
28 +                                /* limit on number of RBF lobes */
29 + static int              lobe_lim = 15000;
30  
31   /* Output XML prologue to stdout */
32   static void
# Line 42 | Line 45 | xml_prologue(int ac, char *av[])
45          puts("<Optical>");
46          puts("<Layer>");
47          puts("\t<Material>");
48 <        puts("\t\t<Name>Name</Name>");
49 <        puts("\t\t<Manufacturer>Manufacturer</Manufacturer>");
48 >        printf("\t\t<Name>%s</Name>\n", bsdf_name[0] ? bsdf_name : "Unknown");
49 >        printf("\t\t<Manufacturer>%s</Manufacturer>\n",
50 >                        bsdf_manuf[0] ? bsdf_manuf : "Unknown");
51          puts("\t\t<DeviceType>Other</DeviceType>");
52          puts("\t</Material>");
53          puts("\t<DataDefinition>");
# Line 112 | Line 116 | eval_isotropic(char *funame)
116   {
117          const int       sqres = 1<<samp_order;
118          FILE            *ofp = NULL;
119 +        int             assignD = 0;
120          char            cmd[128];
121          int             ix, ox, oy;
122          double          iovec[6];
# Line 119 | Line 124 | eval_isotropic(char *funame)
124  
125          data_prologue();                        /* begin output */
126          if (pctcull >= 0) {
127 <                sprintf(cmd, "rttree_reduce -h -a -ff -r 3 -t %f -g %d",
127 >                sprintf(cmd, "rttree_reduce -a -h -ff -r 3 -t %f -g %d",
128                                  pctcull, samp_order);
129                  fflush(stdout);
130                  ofp = popen(cmd, "w");
# Line 131 | Line 136 | eval_isotropic(char *funame)
136                  SET_FILE_BINARY(ofp);
137          } else
138                  fputs("{\n", stdout);
139 +                                                /* need to assign Dx, Dy, Dz? */
140 +        if (funame != NULL)
141 +                assignD = (fundefined(funame) < 6);
142                                                  /* run through directions */
143          for (ix = 0; ix < sqres/2; ix++) {
144                  RBFNODE *rbf = NULL;
# Line 138 | Line 146 | eval_isotropic(char *funame)
146                  iovec[1] = .0;
147                  iovec[2] = input_orient * sqrt(1. - iovec[0]*iovec[0]);
148                  if (funame == NULL)
149 <                        rbf = advect_rbf(iovec);
149 >                        rbf = advect_rbf(iovec, lobe_lim);
150                  for (ox = 0; ox < sqres; ox++) {
151                      float       last_bsdf = -1;
152                      for (oy = 0; oy < sqres; oy++) {
# Line 151 | Line 159 | eval_isotropic(char *funame)
159                          else {
160                              double      ssa[3], ssvec[6], sum;
161                              int         ssi;
162 +                            if (assignD) {
163 +                                varset("Dx", '=', -iovec[3]);
164 +                                varset("Dy", '=', -iovec[4]);
165 +                                varset("Dz", '=', -iovec[5]);
166 +                                ++eclock;
167 +                            }
168                              bsdf = funvalue(funame, 6, iovec);
169                              if (abs_diff(bsdf, last_bsdf) > ssamp_thresh) {
170                                  sum = 0;        /* super-sample voxel */
# Line 165 | Line 179 | eval_isotropic(char *funame)
179                                      ssvec[5] = output_orient *
180                                                  sqrt(1. - ssvec[3]*ssvec[3] -
181                                                          ssvec[4]*ssvec[4]);
182 +                                    if (assignD) {
183 +                                        varset("Dx", '=', -iovec[3]);
184 +                                        varset("Dy", '=', -iovec[4]);
185 +                                        varset("Dz", '=', -iovec[5]);
186 +                                        ++eclock;
187 +                                    }
188                                      sum += funvalue(funame, 6, ssvec);
189                                  }
190                                  bsdf = sum/nssamp;
# Line 200 | Line 220 | eval_anisotropic(char *funame)
220   {
221          const int       sqres = 1<<samp_order;
222          FILE            *ofp = NULL;
223 +        int             assignD = 0;
224          char            cmd[128];
225          int             ix, iy, ox, oy;
226          double          iovec[6];
# Line 207 | Line 228 | eval_anisotropic(char *funame)
228  
229          data_prologue();                        /* begin output */
230          if (pctcull >= 0) {
231 <                sprintf(cmd, "rttree_reduce -h -a -ff -r 4 -t %f -g %d",
231 >                sprintf(cmd, "rttree_reduce%s -h -ff -r 4 -t %f -g %d",
232 >                                (input_orient>0 ^ output_orient>0) ? "" : " -a",
233                                  pctcull, samp_order);
234                  fflush(stdout);
235                  ofp = popen(cmd, "w");
# Line 218 | Line 240 | eval_anisotropic(char *funame)
240                  }
241          } else
242                  fputs("{\n", stdout);
243 +                                                /* need to assign Dx, Dy, Dz? */
244 +        if (funame != NULL)
245 +                assignD = (fundefined(funame) < 6);
246                                                  /* run through directions */
247          for (ix = 0; ix < sqres; ix++)
248              for (iy = 0; iy < sqres; iy++) {
# Line 226 | Line 251 | eval_anisotropic(char *funame)
251                  iovec[2] = input_orient *
252                                  sqrt(1. - iovec[0]*iovec[0] - iovec[1]*iovec[1]);
253                  if (funame == NULL)
254 <                        rbf = advect_rbf(iovec);
254 >                        rbf = advect_rbf(iovec, lobe_lim);
255                  for (ox = 0; ox < sqres; ox++) {
256                      float       last_bsdf = -1;
257                      for (oy = 0; oy < sqres; oy++) {
# Line 239 | Line 264 | eval_anisotropic(char *funame)
264                          else {
265                              double      ssa[4], ssvec[6], sum;
266                              int         ssi;
267 +                            if (assignD) {
268 +                                varset("Dx", '=', -iovec[3]);
269 +                                varset("Dy", '=', -iovec[4]);
270 +                                varset("Dz", '=', -iovec[5]);
271 +                                ++eclock;
272 +                            }
273                              bsdf = funvalue(funame, 6, iovec);
274                              if (abs_diff(bsdf, last_bsdf) > ssamp_thresh) {
275                                  sum = 0;        /* super-sample voxel */
# Line 254 | Line 285 | eval_anisotropic(char *funame)
285                                      ssvec[5] = output_orient *
286                                                  sqrt(1. - ssvec[3]*ssvec[3] -
287                                                          ssvec[4]*ssvec[4]);
288 +                                    if (assignD) {
289 +                                        varset("Dx", '=', -iovec[3]);
290 +                                        varset("Dy", '=', -iovec[4]);
291 +                                        varset("Dz", '=', -iovec[5]);
292 +                                        ++eclock;
293 +                                    }
294                                      sum += funvalue(funame, 6, ssvec);
295                                  }
296                                  bsdf = sum/nssamp;
# Line 324 | Line 361 | main(int argc, char *argv[])
361                  case 'g':
362                          samp_order = atoi(argv[++i]);
363                          break;
364 +                case 'l':
365 +                        lobe_lim = atoi(argv[++i]);
366 +                        break;
367                  default:
368                          goto userr;
369                  }
370          if (single_plane_incident >= 0) {       /* function-based BSDF? */
371                  void    (*evf)(char *s) = single_plane_incident ?
372                                  &eval_isotropic : &eval_anisotropic;
373 <                if (i != argc-1 || fundefined(argv[i]) != 6) {
373 >                if (i != argc-1 || fundefined(argv[i]) < 3) {
374                          fprintf(stderr,
375          "%s: need single function with 6 arguments: bsdf(ix,iy,iz,ox,oy,oz)\n",
376                                          progname);
377 +                        fprintf(stderr, "\tor 3 arguments using Dx,Dy,Dz: bsdf(ix,iy,iz)\n",
378 +                                        progname);
379                          goto userr;
380                  }
381 +                ++eclock;
382                  xml_prologue(argc, argv);       /* start XML output */
383                  if (dofwd) {
384                          input_orient = -1;
# Line 388 | Line 431 | main(int argc, char *argv[])
431          return(0);
432   userr:
433          fprintf(stderr,
434 <        "Usage: %s [-g Nlog2][-t pctcull] [bsdf.sir ..] > bsdf.xml\n",
434 >        "Usage: %s [-g Nlog2][-t pctcull][-l maxlobes] [bsdf.sir ..] > bsdf.xml\n",
435                                  progname);
436          fprintf(stderr,
437          "   or: %s -t{3|4} [-g Nlog2][-t pctcull][{+|-}for[ward]][{+|-}b[ackward]][-e expr][-f file] bsdf_func > bsdf.xml\n",

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines