IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 9, 2008, 11:16:09 AM (17 years ago)
Author:
Paul Price
Message:

Adding required headers

File:
1 edited

Legend:

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

    r18828 r20945  
    33 * @author RHL, Princeton & IfA; EAM, IfA
    44 *
    5  * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    6  * @date $Date: 2008-08-01 00:00:17 $
     5 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     6 * @date $Date: 2008-12-09 21:16:09 $
    77 * Copyright 2006 Institute for Astronomy, University of Hawaii
    88 */
     
    1010#ifndef PM_FOOTPRINT_H
    1111#define PM_FOOTPRINT_H
     12
     13#include <pslib.h>
     14#include "pmSpan.h"
     15
     16
    1217typedef struct {
    1318    const int id;                       //!< unique ID
     
    1722    psArray *peaks;                     //!< the peaks lying in this footprint
    1823    psRegion region;   //!< A region describing the psImage the footprints live in
    19     bool normalized;                    //!< Are the spans sorted? 
     24    bool normalized;                    //!< Are the spans sorted?
    2025} pmFootprint;
    2126
     
    2732void pmFootprintSetBBox(pmFootprint *fp);
    2833
    29 pmSpan *pmFootprintAddSpan(pmFootprint *fp,     // the footprint to add to
    30                            const int y, // row to add
    31                            int x0,      // range of
    32                            int x1);    //          columns
     34pmSpan *pmFootprintAddSpan(pmFootprint *fp,     // the footprint to add to
     35                           const int y, // row to add
     36                           int x0,      // range of
     37                           int x1);    //          columns
    3338
    3439psArray *pmFootprintsFind(const psImage *img, const float threshold, const int npixMin);
     
    4550psImage *pmSetFootprintID(psImage *idImage, const pmFootprint *fp, const int id);
    4651void pmSetFootprintArrayIDsForImage(psImage *idImage,
    47                                     const psArray *footprints, // the footprints to insert
    48                                     const bool relativeIDs); // show IDs starting at 0, not pmFootprint->id
     52                                    const psArray *footprints, // the footprints to insert
     53                                    const bool relativeIDs); // show IDs starting at 0, not pmFootprint->id
    4954
    5055psErrorCode pmFootprintsAssignPeaks(psArray *footprints, const psArray *peaks);
Note: See TracChangeset for help on using the changeset viewer.