IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 21, 2004, 1:39:10 PM (22 years ago)
Author:
desonia
Message:

Added psImageRotate, psImageShift

File:
1 edited

Legend:

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

    r1226 r1250  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-07-15 19:58:37 $
     12 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-07-21 23:39:10 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1919
    2020#include "psImage.h"
     21#include "psImageStats.h"
    2122
    2223/// @addtogroup Image
     
    104105);
    105106
     107psImage* psImageRotate(
     108    psImage* out,                   ///< an psImage to recycle.  If NULL, a new image is created
     109    const psImage* in,              ///< input image
     110    float angle,
     111    float unexposedValue,
     112    psImageInterpolateMode mode
     113);
     114
     115psImage* psImageShift(
     116    psImage* out,                   ///< an psImage to recycle.  If NULL, a new image is created
     117    const psImage* in,              ///< input image
     118    float dx,
     119    float dy,
     120    float unexposedValue,
     121    psImageInterpolateMode mode
     122);
     123
    106124/** Roll image by an integer number of pixels in either direction.
    107125 *
Note: See TracChangeset for help on using the changeset viewer.