IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 18, 2005, 7:18:20 PM (21 years ago)
Author:
desonia
Message:

fixes to psRegion.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImageStructManip.h

    r3968 r3977  
    88*  @author Robert DeSonia, MHPCC
    99*
    10 *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2005-05-19 02:08:21 $
     10*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2005-05-19 05:18:20 $
    1212*
    1313*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4545);
    4646
    47 /** Create a subimage of the specified area.
     47/** Makes a copy of a psImage
    4848 *
    49  * Uses psLib memory allocation functions to create an image based on a larger
    50  * one.
    51  *
    52  * @return psImage* : Pointer to psImage.
     49 * @return psImage* Copy of the input psImage.  This may not be equal to the
     50 * output parameter
    5351 *
    5452 */
    55 psImage* psImageSubsection(
    56     psImage* image,                    ///< Parent image.
    57     const char* section                ///< Subsection in the form '[x1:x2,y1:y2]'
     53psImage* psImageCopy(
     54    psImage* output,                   ///< if not NULL, a psImage that could be recycled.
     55    const psImage* input,              ///< the psImage to copy
     56    psElemType type                    ///< the desired datatype of the returned copy
    5857);
    5958
Note: See TracChangeset for help on using the changeset viewer.