IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 22, 2004, 10:42:22 AM (22 years ago)
Author:
desonia
Message:

moved files

File:
1 edited

Legend:

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

    r1261 r1263  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-07-22 20:09:04 $
     13 *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-07-22 20:42:22 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    9898);
    9999
    100 /** Create a subimage of the specified area.
    101  *
    102  * Uses psLib memory allocation functions to create an image based on a larger
    103  * one.
    104  *
    105  * @return psImage*: Pointer to psImage.
    106  *
    107  */
    108 psImage *psImageSubset(
    109     psImage *out,                       ///< Subimage to return, or NULL.
    110     psImage *image,                     ///< Parent image.
    111     unsigned int numCols,               ///< Subimage width (<= image.nCols - col0).
    112     unsigned int numRows,               ///< Subimage height (<= image.nRows - row0).
    113     unsigned int col0,                  ///< Subimage col-offset (0 <= col0 < nCol).
    114     unsigned int row0                   ///< Subimage row-offset (0 <= row0 < nCol).
    115 );
    116100
    117101/** Frees all children of a psImage.
     
    123107    psImage* image
    124108    /**< psImage in which all children shall be deallocated */
    125 );
    126 
    127 /** Makes a copy of a psImage
    128  *
    129  * @return psImage*  Copy of the input psImage.  This may not be equal to the
    130  * output parameter
    131  *
    132  */
    133 psImage *psImageCopy(
    134     psImage* restrict output,
    135     /**< if not NULL, a psImage that could be recycled.  If it can not be used,
    136      *   it will be freed via psImageFree
    137      */
    138     const psImage *input,
    139     /**< the psImage to copy */
    140     psElemType type
    141     /**< the desired datatype of the returned copy */
    142109);
    143110
Note: See TracChangeset for help on using the changeset viewer.