IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 28823


Ignore:
Timestamp:
Aug 1, 2010, 4:39:51 PM (16 years ago)
Author:
eugene
Message:

add function to match diff detections to input sources

Location:
branches/eam_branches/ipp-20100621/ppSub/src
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20100621/ppSub/src/Makefile.am

    r28043 r28823  
    3939        ppSubDefineOutput.c             \
    4040        ppSubExtras.c                   \
     41        ppSubFlagNeighbors.c            \
    4142        ppSubMakePSF.c                  \
    4243        ppSubMatchPSFs.c                \
  • branches/eam_branches/ipp-20100621/ppSub/src/ppSub.h

    r28121 r28823  
    175175    );
    176176
     177bool ppSubFlagNeighbors(pmConfig *config, pmFPAview *view, psArray *sources, bool matchRef);
     178bool ppSubMatchSources (psArray *objects, psArray *sources, float RADIUS);
     179bool ppSubSetSourceImageIDs (psArray *sources, int imageID);
     180
    177181///@}
    178182#endif
  • branches/eam_branches/ipp-20100621/ppSub/src/ppSubReadoutPhotometry.c

    r26982 r28823  
    9797    psAssert (sources, "missing sources?");
    9898
     99    // a likely source of false positives is poor subtractions.  this results in
     100    // detections in the wings (or cores) of bright(er) stars found in both images.
     101    // flag detections based on their distance from the bright(er) input sources.
     102    bool matchRef = !strcasecmp(name, "PPSUB.INVERSE");
     103    ppSubFlagNeighbors (config, view, sources, matchRef);
     104
    99105    if (data->stats) {
    100106        bool mdok;
Note: See TracChangeset for help on using the changeset viewer.