c3-time-domain / SeeChange

A time-domain data reduction pipeline (e.g., for handling images->lightcurves) for surveys like DECam and LS4
BSD 3-Clause "New" or "Revised" License
0 stars 4 forks source link

SExtractor thresholds #201

Closed guynir42 closed 2 weeks ago

guynir42 commented 5 months ago

Right now we are using a heuristic to reduce the threshold on sextractor sources (we divide the given threshold from the config file for DETECT_THRESH and ANALYSIS_THRESH by 3.0) otherwise no sources will be detected).

The correct thing to do is to use sqrt(sum(psf **2)) as the normalization factor, that for some reason, is not used by sextractor when it does the matched-filteing.

guynir42 commented 3 weeks ago

Addressed by #308