Changeset 30750
- Timestamp:
- Feb 24, 2011, 9:05:49 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20110213/psphot/src/psphotSignificanceImage.c
r29548 r30750 21 21 minGauss = 0.5; 22 22 } 23 24 // NOTE: for a faint extended-source detection pass, we over-smooth by SOMETHING 23 25 24 26 // if we have already determined the PSF model, then we have a better idea how to smooth this image … … 99 101 smooth_im->data.F32[j][i] = 0.0; 100 102 } else { 101 float v2 = value + PS_SQR(value/1000.0); 103 // XXX the value of 100 here (or 1000 before) must depend on the FWHM of the smoothing kernel, right?? 104 float v2 = value + PS_SQR(value/100.0); 102 105 smooth_im->data.F32[j][i] = factor * PS_SQR(v2) / smooth_wt->data.F32[j][i]; 103 106 }
Note:
See TracChangeset
for help on using the changeset viewer.
