Changeset 287
- Timestamp:
- Mar 23, 2004, 3:19:59 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psAstrom.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psAstrom.h
r272 r287 103 103 } psChip; 104 104 105 /** a Cell: a collection of frames.106 */ 107 typedef struct { 108 int n Frames; ///< number of frames in this cell realization; each may have its own109 ///< image, objects and overscan.110 struct ps Frame *frames; //!< Frames from the cell105 /** a Cell: a collection of readouts. 106 */ 107 typedef 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 111 111 psMetaDataSet *md; ///< Cell-level metadata 112 112 … … 118 118 } psCell; 119 119 120 /** a Frame: a collection of pixels */120 /** a Readout: a collection of pixels */ 121 121 typedef struct { 122 122 const int x0, y0; //!< Offset from the lower-left corner … … 124 124 psDlist *objects; ///< objects derived from cell 125 125 psImage *overscan; ///< bias region (subimage) of cell 126 psMetaDataSet *md; //!< Frame-level metadata127 } ps Frame;126 psMetaDataSet *md; //!< Readout-level metadata 127 } psReadout; 128 128 129 129
Note:
See TracChangeset
for help on using the changeset viewer.
