IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 18, 2004, 9:37:58 PM (22 years ago)
Author:
eugene
Message:

code cleanup for Doxygen support & readability

File:
1 edited

Legend:

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

    r253 r257  
    55 *  \brief Basic image definitions and operations.
    66 *  \ingroup AstroGroup
    7  */
    8 
    9 /** General image manipulation functions.
    10  *  These functions operate on individual 2D images
    117 */
    128
     
    3228} psImage;
    3329
     30/** Functions **************************************************************/
     31/** \addtogroup AstroGroup Astronomy-Specific Utilities
     32 *  \{
     33 */
     34
    3435/*** Image structure manipulation ***/
     36
    3537/// Create an image of the specified size and type.
    36 typedef int PS_IMAGE_DEPTH;             // RHL Added this to make the psImage compile XXX
    37 
    3838psImage *
    3939psImageAlloc (int nx,                   ///< image width
    4040              int ny,                   ///< image height
    41               PS_IMAGE_DEPTH depth      ///< image depth
    42     );
     41              psType type)              ///< image data type
     42;
    4343
    4444/// Create a subimage of the specified area.
     
    6868
    6969/*** various image pixel extractions ***/
    70 
    71 typedef enum { PS_STAT_MODE_MEDIAN } psStatMode;
    7270
    7371/// Extract pixels from rectlinear region to a vector.
     
    271269);
    272270
     271/* \} */ // End of AstroGroup Functions
     272
    273273# endif
    274274/* image overlay operations
Note: See TracChangeset for help on using the changeset viewer.