Changeset 35688 for trunk/psphot
- Timestamp:
- Jun 20, 2013, 1:15:38 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/psphot/src/psphotSignificanceImage.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/psphotSignificanceImage.c
r34086 r35688 102 102 smooth_wt->data.F32[j][i] = 0.0; 103 103 } else { 104 // XXX the value of 100 here (or 1000 before) must depend on the FWHM of the smoothing kernel, right?? 105 float v2 = value + PS_SQR(value/100.0); 106 smooth_wt->data.F32[j][i] = factor * PS_SQR(v2) / smooth_wt->data.F32[j][i]; 104 // XXX the value of 100 here (or 1000 before) must depend on the FWHM of the smoothing kernel, right?? 105 // float v2 = value + PS_SQR(value/100.0); 106 // CZW 2013-06-20: I don't think this hack was helping. 107 float v2 = value; 108 smooth_wt->data.F32[j][i] = factor * PS_SQR(v2) / smooth_wt->data.F32[j][i]; 107 109 } 108 110 }
Note:
See TracChangeset
for help on using the changeset viewer.
