Changeset 24274 for trunk/psphot
- Timestamp:
- May 28, 2009, 2:17:52 PM (17 years ago)
- Location:
- trunk/psphot/src
- Files:
-
- 2 edited
-
psphotFindFootprints.c (modified) (1 diff)
-
psphotReadoutMinimal.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/psphotFindFootprints.c
r21366 r24274 59 59 60 60 psArray *mergedFootprints = pmFootprintArraysMerge(detections->footprints, footprints, includePeaks); 61 psLogMsg ("psphot", PS_LOG_MINUTIA, "merged %ld new footprints with %ld existing ones: %f sec\n", footprints->n, detections->footprints->n, psTimerMark ("psphot.footprints"));61 psLogMsg ("psphot", PS_LOG_MINUTIA, "merged %ld new footprints with %ld existing ones: %f sec\n", footprints->n, (detections->footprints ? detections->footprints->n : 0), psTimerMark ("psphot.footprints")); 62 62 63 63 psFree(footprints); -
trunk/psphot/src/psphotReadoutMinimal.c
r23442 r24274 46 46 47 47 // find the detections (by peak and/or footprint) in the image. 48 pmDetections *detections = psphotFindDetections (NULL, readout, recipe); 48 pmDetections *detections = pmDetectionsAlloc(); // New detections; allocated to ensure pass=2 49 detections = psphotFindDetections(detections, readout, recipe); 49 50 if (!detections) { 50 51 psLogMsg ("psphot", 3, "unable to find detections in this image");
Note:
See TracChangeset
for help on using the changeset viewer.
