IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 24, 2004, 4:06:12 PM (22 years ago)
Author:
desonia
Message:

added psImageRadialCut. Untested, but compiles.

File:
1 edited

Legend:

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

    r1894 r1897  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-09-25 00:47:54 $
     12 *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-09-25 02:06:12 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    580580            float inRow = (float)row * invScale; \
    581581            for (int col=0;col<outCols;col++) { \
    582                 rowData[col] = psImagePixelInterpolate(in,inRow,(float)col*invScale,0,mode); \
     582                rowData[col] = psImagePixelInterpolate(in,inRow,(float)col*invScale,NULL,0,0,mode); \
    583583            } \
    584584        }  \
     
    889889                outRow = out->data.TYPE[y]; \
    890890                for (int x = 0; x < outCols; x++) { \
    891                     outRow[x] = p_psImagePixelInterpolate##MODE##_##TYPE(in,inX,inY,unexposedValue); \
     891                    outRow[x] = p_psImagePixelInterpolate##MODE##_##TYPE(in,inX,inY,NULL,0,unexposedValue); \
    892892                    inX += cosT; \
    893893                    inY -= sinT; \
     
    10131013        for (int col=0;col<outCols;col++) { \
    10141014            outRow[col] = p_psImagePixelInterpolate##MODE##_##TYPE( \
    1015                           in,dx+(float)col,y,unexposedValue); \
     1015                          in,dx+(float)col,y,NULL,0,unexposedValue); \
    10161016        } \
    10171017    } \
Note: See TracChangeset for help on using the changeset viewer.