IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 15, 2004, 9:58:37 AM (22 years ago)
Author:
desonia
Message:

Added psImageRoll.

File:
1 edited

Legend:

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

    r1216 r1226  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-07-14 23:22:49 $
     12 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-07-15 19:58:37 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    104104);
    105105
     106/** Roll image by an integer number of pixels in either direction.
     107 *
     108 *  The output image is the same dimensions as the input image.  Edge pixels
     109 *  wrap to the other side (no values are lost).  This function is
     110 *  defined for psU8, psS8, psS16, psF32, psF64, psC32, and psC64.
     111 *
     112 *  @return psImage*    the rolled version of the input image.
     113 */
     114psImage* psImageRoll(
     115    psImage* out,                   ///< an psImage to recycle.  If NULL, a new image is created
     116    const psImage* in,              ///< input image
     117    int dx,                         ///< number of pixels to roll in the x-dimension
     118    int dy                          ///< number of pixels to roll in the y-dimension
     119);
     120
    106121#endif
    107122
Note: See TracChangeset for help on using the changeset viewer.