IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 287


Ignore:
Timestamp:
Mar 23, 2004, 3:19:59 PM (22 years ago)
Author:
Paul Price
Message:

Renamed psFrame to psReadout following feedback that a Frame was
understood to be an exposure.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psAstrom.h

    r272 r287  
    103103} psChip;
    104104
    105 /** a Cell: a collection of frames.
    106  */
    107 typedef struct {
    108     int nFrames;                        ///< number of frames in this cell realization; each may have its own
    109                                         ///< image, objects and overscan.
    110     struct psFrame *frames;             //!< Frames from the cell
     105/** a Cell: a collection of readouts.
     106 */
     107typedef struct {
     108    int nReadouts;                      ///< number of readouts in this cell realization; each may have its
     109                                        ///< own image, objects and overscan.
     110    struct psReadout *readouts;         //!< Readouts from the cell
    111111    psMetaDataSet *md;                  ///< Cell-level metadata
    112112
     
    118118} psCell;
    119119
    120 /** a Frame: a collection of pixels */
     120/** a Readout: a collection of pixels */
    121121typedef struct {
    122122    const int x0, y0;                   //!< Offset from the lower-left corner
     
    124124    psDlist *objects;                   ///< objects derived from cell
    125125    psImage *overscan;                  ///< bias region (subimage) of cell
    126     psMetaDataSet *md;                  //!< Frame-level metadata
    127 } psFrame;
     126    psMetaDataSet *md;                  //!< Readout-level metadata
     127} psReadout;
    128128   
    129129
Note: See TracChangeset for help on using the changeset viewer.