IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 23, 2007, 2:11:02 PM (19 years ago)
Author:
magnier
Message:
  • added function pointers to pmModel to provide class-dependent functions
  • dropped pmModel*_GetFunction functions (use pmModel->func functions instead)
  • added modelParamsFromPSF functions to model classes
  • changed pmModelGroup to pmModelClass
  • added pmSourceFitSet.[ch]
  • updated pmSourceFitSet to allow variable model classes
  • added functions to add/sub and eval models & sources with an offset between image and chip
  • added function to set a pmModel flux
  • added function to instatiate a pmModel from a pmPSF at a coordinate
  • moved pmPSF I/O to chip->analysis from readout->analysis
  • changed pmPSF I/O function names from *ForPSFmodel to pmPSFmodel*
  • changed pmModel.params_NEW back to pmModel.params
  • changed pmFind*Peaks to pmPeaksIn* (* = Image,Vector)
  • dropped pmCullPeaks (deprecated)
  • changed pmModelSetType to pmModelClassGetType
  • changed pmModelGetType to pmModelClassGetName
  • fixed PGAUSS implementation of modelRadius function
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/objects/pmPeaks.h

    r11253 r14652  
    1010 * @author GLG, MHPCC
    1111 *
    12  * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    13  * @date $Date: 2007-01-24 02:54:15 $
     12 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     13 * @date $Date: 2007-08-24 00:11:02 $
    1414 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    1515 */
     
    7272);
    7373
    74 bool pmIsPeak(const psPtr ptr);
     74bool pmPeakTest(const psPtr ptr);
    7575
    76 /** pmFindVectorPeaks()
     76/** pmPeaksInVector()
    7777 *
    7878 * Find all local peaks in the given vector above the given threshold. A peak
     
    9191 *
    9292 */
    93 psVector *pmFindVectorPeaks(
     93psVector *pmPeaksInVector(
    9494    const psVector *vector,  ///< The input vector (float)
    9595    float threshold   ///< Threshold above which to find a peak
     
    9797
    9898
    99 /** pmFindImagePeaks()
     99/** pmPeaksInImage()
    100100 *
    101101 * Find all local peaks in the given image above the given threshold. This
     
    111111 *
    112112 */
    113 psArray *pmFindImagePeaks(
     113psArray *pmPeaksInImage(
    114114    const psImage *image,  ///< The input image where peaks will be found (float)
    115115    float threshold   ///< Threshold above which to find a peak
Note: See TracChangeset for help on using the changeset viewer.