- Timestamp:
- Mar 10, 2011, 5:23:09 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20110213/psModules/src/objects/pmFootprintCullPeaks.c
r30752 r30865 38 38 const float nsigma_delta, // how many sigma above local background a peak needs to be to survive 39 39 const float fPadding, // fractional padding added to stdev since bright peaks have unreasonably high significance 40 const float min_threshold) { // minimum permitted coll height 40 const float min_threshold, // minimum permitted coll height 41 const float max_threshold) { // maximum permitted coll height 41 42 assert (img != NULL); assert (img->type.type == PS_TYPE_F32); 42 43 assert (weight != NULL); assert (weight->type.type == PS_TYPE_F32); … … 119 120 threshold = min_threshold; 120 121 } 122 if (threshold > max_threshold) { 123 threshold = max_threshold; 124 } 121 125 122 126 // init peakFootprint here?
Note:
See TracChangeset
for help on using the changeset viewer.
