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.73 by greg, Fri Oct 14 00:54:21 2016 UTC vs.
Revision 2.81 by greg, Thu Apr 12 18:02:45 2018 UTC

# Line 58 | Line 58 | ambcollision(                          /* proposed direciton collides? */
58          FVECT   dv
59   )
60   {
61 <        const double    cos_thresh = 0.9999995; /* about 3.44 arcminutes */
62 <        int             ii, jj;
63 <
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;
# Line 72 | Line 75 | ambcollision(                          /* proposed direciton collides? */
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) continue;
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);
86 >        return(0);                      /* nothing to worry about */
87   }
88  
89  
# Line 122 | Line 126 | resample:
126                                          /* avoid coincident samples */
127          if (!n && ambcollision(hp, i, j, ar.rdir)) {
128                  spt[0] = frandom(); spt[1] = frandom();
129 <                goto resample;
129 >                goto resample;          /* reject this sample */
130          }
131          dimlist[ndims++] = AI(hp,i,j) + 90171;
132          rayvalue(&ar);                  /* evaluate ray */
# Line 133 | Line 137 | resample:
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 152 | Line 156 | resample:
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 210 | Line 218 | ambsupersamp(AMBHEMI *hp, int cnt)
218   {
219          float   *earr = getambdiffs(hp);
220          double  e2rem = 0;
213        AMBSAMP *ap;
221          float   *ep;
222          int     i, j, n, nss;
223  
# Line 220 | 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 244 | 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 666 | Line 676 | ambcorral(AMBHEMI *hp, FVECT uv[2], const double r0, c
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              }
669                                        /* add low-angle incident (< 20deg) */
670        if (fabs(hp->rp->rod) <= 0.342) {
671                u = -DOT(hp->rp->rdir, uv[0]);
672                v = -DOT(hp->rp->rdir, uv[1]);
673                if ((r0*r0*u*u + r1*r1*v*v) > hp->rp->rot*hp->rp->rot) {
674                        ang = atan2a(v, u);
675                        ang += 2.*PI*(ang < 0);
676                        ang *= 16/PI;
677                        if ((ang < .5) | (ang >= 31.5))
678                                flgs |= 0x80000001;
679                        else
680                                flgs |= 3L<<(int)(ang-.5);
681                }
682        }
679          return(flgs);
680   }
681  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines