IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 30750


Ignore:
Timestamp:
Feb 24, 2011, 9:05:49 AM (15 years ago)
Author:
eugene
Message:

bright sources in the significance image have flat tops or donuts; change the roll-over to image (from S/N) to occur at a lower level (still fairly arbitrary)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20110213/psphot/src/psphotSignificanceImage.c

    r29548 r30750  
    2121        minGauss = 0.5;
    2222    }
     23
     24    // NOTE: for a faint extended-source detection pass, we over-smooth by SOMETHING
    2325
    2426    // if we have already determined the PSF model, then we have a better idea how to smooth this image
     
    99101                smooth_im->data.F32[j][i] = 0.0;
    100102            } 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);
    102105                smooth_im->data.F32[j][i] = factor * PS_SQR(v2) / smooth_wt->data.F32[j][i];
    103106            }
Note: See TracChangeset for help on using the changeset viewer.