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

Comparing ray/src/rt/ambcomp.c (file contents):
Revision 2.64 by greg, Tue Aug 19 15:04:40 2014 UTC vs.
Revision 2.81 by greg, Thu Apr 12 18:02:45 2018 UTC

# Line 51 | Line 51 | typedef struct {
51  
52  
53   static int
54 + ambcollision(                           /* proposed direciton collides? */
55 +        AMBHEMI *hp,
56 +        int     i,
57 +        int     j,
58 +        FVECT   dv
59 + )
60 + {
61 +        double  cos_thresh;
62 +        int     ii, jj;
63 +                                        /* min. spacing = 1/4th division */
64 +        cos_thresh = (PI/4.)/(double)hp->ns;
65 +        cos_thresh = 1. - .5*cos_thresh*cos_thresh;
66 +                                        /* check existing neighbors */
67 +        for (ii = i-1; ii <= i+1; ii++) {
68 +                if (ii < 0) continue;
69 +                if (ii >= hp->ns) break;
70 +                for (jj = j-1; jj <= j+1; jj++) {
71 +                        AMBSAMP *ap;
72 +                        FVECT   avec;
73 +                        double  dprod;
74 +                        if (jj < 0) continue;
75 +                        if (jj >= hp->ns) break;
76 +                        if ((ii==i) & (jj==j)) continue;
77 +                        ap = &ambsam(hp,ii,jj);
78 +                        if (ap->d <= .5/FHUGE)
79 +                                continue;       /* no one home */
80 +                        VSUB(avec, ap->p, hp->rp->rop);
81 +                        dprod = DOT(avec, dv);
82 +                        if (dprod >= cos_thresh*VLEN(avec))
83 +                                return(1);      /* collision */
84 +                }
85 +        }
86 +        return(0);                      /* nothing to worry about */
87 + }
88 +
89 +
90 + static int
91   ambsample(                              /* initial ambient division sample */
92          AMBHEMI *hp,
93          int     i,
# Line 78 | Line 115 | ambsample(                             /* initial ambient division sample */
115          hlist[1] = j;
116          hlist[2] = i;
117          multisamp(spt, 2, urand(ilhash(hlist,3)+n));
118 <                                        /* avoid coincident samples */
82 <        if (!n && (0 < i) & (i < hp->ns-1) &&
83 <                        (0 < j) & (j < hp->ns-1)) {
84 <                if ((spt[0] < 0.1) | (spt[0] >= 0.9))
85 <                        spt[0] = 0.1 + 0.8*frandom();
86 <                if ((spt[1] < 0.1) | (spt[1] >= 0.9))
87 <                        spt[1] = 0.1 + 0.8*frandom();
88 <        }
118 > resample:
119          SDsquare2disk(spt, (j+spt[1])/hp->ns, (i+spt[0])/hp->ns);
120          zd = sqrt(1. - spt[0]*spt[0] - spt[1]*spt[1]);
121          for (ii = 3; ii--; )
# Line 93 | Line 123 | ambsample(                             /* initial ambient division sample */
123                                  spt[1]*hp->uy[ii] +
124                                  zd*hp->rp->ron[ii];
125          checknorm(ar.rdir);
126 +                                        /* avoid coincident samples */
127 +        if (!n && ambcollision(hp, i, j, ar.rdir)) {
128 +                spt[0] = frandom(); spt[1] = frandom();
129 +                goto resample;          /* reject this sample */
130 +        }
131          dimlist[ndims++] = AI(hp,i,j) + 90171;
132          rayvalue(&ar);                  /* evaluate ray */
133          ndims--;
# Line 102 | Line 137 | ambsample(                             /* initial ambient division sample */
137          if (ar.rt*ap->d < 1.0)          /* new/closer distance? */
138                  ap->d = 1.0/ar.rt;
139          if (!n) {                       /* record first vertex & value */
140 <                if (ar.rt > 10.0*thescene.cusize)
141 <                        ar.rt = 10.0*thescene.cusize;
140 >                if (ar.rt > 10.0*thescene.cusize + 1000.)
141 >                        ar.rt = 10.0*thescene.cusize + 1000.;
142                  VSUM(ap->p, ar.rorg, ar.rdir, ar.rt);
143                  copycolor(ap->v, ar.rcol);
144          } else {                        /* else update recorded value */
# Line 121 | Line 156 | ambsample(                             /* initial ambient division sample */
156   }
157  
158  
159 < /* Estimate errors based on ambient division differences */
159 > /* Estimate variance based on relative ambient division differences */
160   static float *
161   getambdiffs(AMBHEMI *hp)
162   {
163 +        const double    normf = 1./bright(hp->acoef);
164          float   *earr = (float *)calloc(hp->ns*hp->ns, sizeof(float));
165          float   *ep;
166          AMBSAMP *ap;
167 <        double  b, d2;
167 >        double  b, b1, d2;
168          int     i, j;
169  
170          if (earr == NULL)               /* out of memory? */
171                  return(NULL);
172 <                                        /* compute squared neighbor diffs */
172 >                                        /* sum squared neighbor diffs */
173          for (ap = hp->sa, ep = earr, i = 0; i < hp->ns; i++)
174              for (j = 0; j < hp->ns; j++, ap++, ep++) {
175                  b = bright(ap[0].v);
176                  if (i) {                /* from above */
177 <                        d2 = b - bright(ap[-hp->ns].v);
178 <                        d2 *= d2;
177 >                        b1 = bright(ap[-hp->ns].v);
178 >                        d2 = (b - b1)/(b + b1);
179 >                        d2 *= d2*normf;
180                          ep[0] += d2;
181                          ep[-hp->ns] += d2;
182                  }
183                  if (!j) continue;
184                                          /* from behind */
185 <                d2 = b - bright(ap[-1].v);
186 <                d2 *= d2;
185 >                b1 = bright(ap[-1].v);
186 >                d2 = (b - b1)/(b + b1);
187 >                d2 *= d2*normf;
188                  ep[0] += d2;
189                  ep[-1] += d2;
190                  if (!i) continue;
191                                          /* diagonal */
192 <                d2 = b - bright(ap[-hp->ns-1].v);
193 <                d2 *= d2;
192 >                b1 = bright(ap[-hp->ns-1].v);
193 >                d2 = (b - b1)/(b + b1);
194 >                d2 *= d2*normf;
195                  ep[0] += d2;
196                  ep[-hp->ns-1] += d2;
197              }
# Line 179 | Line 218 | ambsupersamp(AMBHEMI *hp, int cnt)
218   {
219          float   *earr = getambdiffs(hp);
220          double  e2rem = 0;
182        AMBSAMP *ap;
183        RAY     ar;
221          float   *ep;
222          int     i, j, n, nss;
223  
# Line 190 | Line 227 | ambsupersamp(AMBHEMI *hp, int cnt)
227          for (ep = earr + hp->ns*hp->ns; ep > earr; )
228                  e2rem += *--ep;
229          ep = earr;                      /* perform super-sampling */
230 <        for (ap = hp->sa, i = 0; i < hp->ns; i++)
231 <            for (j = 0; j < hp->ns; j++, ap++) {
230 >        for (i = 0; i < hp->ns; i++)
231 >            for (j = 0; j < hp->ns; j++) {
232                  if (e2rem <= FTINY)
233                          goto done;      /* nothing left to do */
234                  nss = *ep/e2rem*cnt + frandom();
235                  for (n = 1; n <= nss && ambsample(hp,i,j,n); n++)
236 <                        --cnt;
236 >                        if (!--cnt) goto done;
237                  e2rem -= *ep++;         /* update remainder */
238          }
239   done:
# Line 214 | Line 251 | samp_hemi(                             /* sample indirect hemisphere */
251          AMBHEMI *hp;
252          double  d;
253          int     n, i, j;
254 +                                        /* insignificance check */
255 +        if (bright(rcol) <= FTINY)
256 +                return(NULL);
257                                          /* set number of divisions */
258          if (ambacc <= FTINY &&
259                          wt > (d = 0.8*intens(rcol)*r->rweight/(ambdiv*minweight)))
# Line 236 | Line 276 | samp_hemi(                             /* sample indirect hemisphere */
276          d = 1.0/(n*n);
277          scalecolor(hp->acoef, d);
278                                          /* make tangent plane axes */
279 <        hp->uy[0] = 0.5 - frandom();
240 <        hp->uy[1] = 0.5 - frandom();
241 <        hp->uy[2] = 0.5 - frandom();
242 <        for (i = 3; i--; )
243 <                if ((-0.6 < r->ron[i]) & (r->ron[i] < 0.6))
244 <                        break;
245 <        if (i < 0)
279 >        if (!getperpendicular(hp->ux, r->ron, 1))
280                  error(CONSISTENCY, "bad ray direction in samp_hemi");
247        hp->uy[i] = 1.0;
248        VCROSS(hp->ux, hp->uy, r->ron);
249        normalize(hp->ux);
281          VCROSS(hp->uy, r->ron, hp->ux);
282                                          /* sample divisions */
283          for (i = hp->ns; i--; )
# Line 610 | Line 641 | static uint32
641   ambcorral(AMBHEMI *hp, FVECT uv[2], const double r0, const double r1)
642   {
643          const double    max_d = 1.0/(minarad*ambacc + 0.001);
644 <        const double    ang_res = 0.5*PI/(hp->ns-1);
645 <        const double    ang_step = ang_res/((int)(16/PI*ang_res) + (1+FTINY));
644 >        const double    ang_res = 0.5*PI/hp->ns;
645 >        const double    ang_step = ang_res/((int)(16/PI*ang_res) + 1.01);
646          double          avg_d = 0;
647          uint32          flgs = 0;
648          FVECT           vec;
# Line 619 | Line 650 | ambcorral(AMBHEMI *hp, FVECT uv[2], const double r0, c
650          double          ang, a1;
651          int             i, j;
652                                          /* don't bother for a few samples */
653 <        if (hp->ns < 12)
653 >        if (hp->ns < 8)
654                  return(0);
655                                          /* check distances overhead */
656          for (i = hp->ns*3/4; i-- > hp->ns>>2; )
# Line 642 | Line 673 | ambcorral(AMBHEMI *hp, FVECT uv[2], const double r0, c
673                  if ((r0*r0*u*u + r1*r1*v*v) * ap->d*ap->d <= u*u + v*v)
674                          continue;       /* occluder outside ellipse */
675                  ang = atan2a(v, u);     /* else set direction flags */
676 <                for (a1 = ang-.5*ang_res; a1 <= ang+.5*ang_res; a1 += ang_step)
676 >                for (a1 = ang-ang_res; a1 <= ang+ang_res; a1 += ang_step)
677                          flgs |= 1L<<(int)(16/PI*(a1 + 2.*PI*(a1 < 0)));
678              }
648                                        /* add low-angle incident (< 20deg) */
649        if (fabs(hp->rp->rod) <= 0.342) {
650                u = -DOT(hp->rp->rdir, uv[0]);
651                v = -DOT(hp->rp->rdir, uv[1]);
652                if ((r0*r0*u*u + r1*r1*v*v) > hp->rp->rot*hp->rp->rot) {
653                        ang = atan2a(v, u);
654                        ang += 2.*PI*(ang < 0);
655                        ang *= 16/PI;
656                        if ((ang < .5) | (ang >= 31.5))
657                                flgs |= 0x80000001;
658                        else
659                                flgs |= 3L<<(int)(ang-.5);
660                }
661        }
679          return(flgs);
680   }
681  
# Line 695 | Line 712 | doambient(                             /* compute ambient component */
712                  return(0);
713  
714          if ((ra == NULL) & (pg == NULL) & (dg == NULL) ||
715 <                        (hp->sampOK < 0) | (hp->ns < 4)) {
715 >                        (hp->sampOK < 0) | (hp->ns < 6)) {
716                  free(hp);               /* Hessian not requested/possible */
717                  return(-1);             /* value-only return value */
718          }
# Line 743 | Line 760 | doambient(                             /* compute ambient component */
760                                  ra[0] = maxarad;
761                  }
762                                          /* flag encroached directions */
763 <                if ((wt >= 0.89*AVGREFL) & (crlp != NULL))
763 >                if (crlp != NULL)
764                          *crlp = ambcorral(hp, uv, ra[0]*ambacc, ra[1]*ambacc);
765                  if (pg != NULL) {       /* cap gradient if necessary */
766                          d = pg[0]*pg[0]*ra[0]*ra[0] + pg[1]*pg[1]*ra[1]*ra[1];

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines