IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 6, 2005, 4:17:54 PM (21 years ago)
Author:
drobbin
Message:

made revisions according to psLib SDRS rev 15

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/image/psImage.h

    r4409 r4493  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.59 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-06-28 20:17:52 $
     13 *  @version $Revision: 1.60 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-07-07 02:17:53 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5151typedef struct psImage
    5252{
    53     const psType type;                 ///< Image data type and dimension.
     53    const psMathType type;                 ///< Image data type and dimension.
    5454    const psU32 numCols;               ///< Number of columns in image
    5555    const psU32 numRows;               ///< Number of rows in image.
     
    8787typedef struct
    8888{
    89     psF32 x0;                         ///< the first column of the region.
    90     psF32 x1;                         ///< the last column of the region.
    91     psF32 y0;                         ///< the first row of the region.
    92     psF32 y1;                         ///< the last row of the region.
     89    float x0;                         ///< the first column of the region.
     90    float x1;                         ///< the last column of the region.
     91    float y0;                         ///< the first row of the region.
     92    float y1;                         ///< the last row of the region.
    9393}
    9494psRegion;
     
    113113 */
    114114psRegion psRegionSet(
    115     psF32 x0,                         ///< the first column of the region.
    116     psF32 x1,                         ///< the last column of the region + 1.
    117     psF32 y0,                         ///< the first row of the region.
    118     psF32 y1                          ///< the last row of the region + 1.
     115    float x0,                         ///< the first column of the region.
     116    float x1,                         ///< the last column of the region + 1.
     117    float y0,                         ///< the first row of the region.
     118    float y1                          ///< the last row of the region + 1.
    119119);
    120120
     
    152152
    153153/** Copy an image to a new buffer
    154  * 
     154 *
    155155 *  @return True if image copied or false if error
    156156 */
Note: See TracChangeset for help on using the changeset viewer.