Changeset 257 for trunk/archive/pslib/include/psImage.h
- Timestamp:
- Mar 18, 2004, 9:37:58 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psImage.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psImage.h
r253 r257 5 5 * \brief Basic image definitions and operations. 6 6 * \ingroup AstroGroup 7 */8 9 /** General image manipulation functions.10 * These functions operate on individual 2D images11 7 */ 12 8 … … 32 28 } psImage; 33 29 30 /** Functions **************************************************************/ 31 /** \addtogroup AstroGroup Astronomy-Specific Utilities 32 * \{ 33 */ 34 34 35 /*** Image structure manipulation ***/ 36 35 37 /// Create an image of the specified size and type. 36 typedef int PS_IMAGE_DEPTH; // RHL Added this to make the psImage compile XXX37 38 38 psImage * 39 39 psImageAlloc (int nx, ///< image width 40 40 int ny, ///< image height 41 PS_IMAGE_DEPTH depth ///< image depth42 );41 psType type) ///< image data type 42 ; 43 43 44 44 /// Create a subimage of the specified area. … … 68 68 69 69 /*** various image pixel extractions ***/ 70 71 typedef enum { PS_STAT_MODE_MEDIAN } psStatMode;72 70 73 71 /// Extract pixels from rectlinear region to a vector. … … 271 269 ); 272 270 271 /* \} */ // End of AstroGroup Functions 272 273 273 # endif 274 274 /* image overlay operations
Note:
See TracChangeset
for help on using the changeset viewer.
