Changeset 3629
- Timestamp:
- Apr 1, 2005, 11:39:06 AM (21 years ago)
- Location:
- trunk/psModules
- Files:
-
- 2 edited
-
src/pmObjects.h (modified) (4 diffs)
-
test/tst_pmObjects01.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/pmObjects.h
r3625 r3629 5 5 * @author GLG, MHPCC 6 6 * 7 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $8 * @date $Date: 2005-04-01 2 0:47:40$7 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2005-04-01 21:38:27 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 114 114 the location (x value) of all peaks. 115 115 *****************************************************************************/ 116 psVector *pmFindVectorPe eks(const psVector *vector, ///< The input vector (psF32)116 psVector *pmFindVectorPeaks(const psVector *vector, ///< The input vector (psF32) 117 117 psF32 threshold ///< Threshold above which to find a peak 118 118 ); … … 123 123 value) of all peaks. 124 124 *****************************************************************************/ 125 psList *pmFindImagePe eks(const psImage *image, ///< The input image where peaks will be found (psF32)125 psList *pmFindImagePeaks(const psImage *image, ///< The input image where peaks will be found (psF32) 126 126 psF32 threshold ///< Threshold above which to find a peak 127 127 ); … … 133 133 XXX: Do we free the psList elements of those culled peaks? 134 134 *****************************************************************************/ 135 psList *pmCullPe eks(psList *peaks, ///< The psList of peaks to be culled135 psList *pmCullPeaks(psList *peaks, ///< The psList of peaks to be culled 136 136 psF32 maxValue, ///< Cull peaks above this value 137 137 const psRegion *valid ///< Cull peaks otside this psRegion -
trunk/psModules/test/tst_pmObjects01.c
r3625 r3629 19 19 * abd never deallocate, no error is generated. 20 20 * 21 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $22 * @date $Date: 2005-04-01 2 0:47:40$21 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 22 * @date $Date: 2005-04-01 21:39:06 $ 23 23 * 24 24 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 404 404 } 405 405 406 //HEY407 406 psListElem *tmpPeakLE = (psListElem *) outData->head; 408 407 while (tmpPeakLE != NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.
