IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 14861


Ignore:
Timestamp:
Sep 16, 2007, 3:14:28 PM (19 years ago)
Author:
magnier
Message:

fix x,y exchange error in psImageInterpolatePixelBilinear

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20070830/psLib/src/imageops/psImageUnbin.c

    r14859 r14861  
    77 *  @author Eugene Magnier, IfA
    88 *
    9  *  @version $Revision: 1.7.8.1 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2007-09-15 19:43:43 $
     9 *  @version $Revision: 1.7.8.2 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2007-09-17 01:14:28 $
    1111 *
    1212 *  Copyright 2007 Institute for Astronomy, University of Hawaii
     
    309309
    310310    // bilinear interpolation
    311     const double value = V00*rx*ry + V10*rx*dy + V01*dx*ry + V11*dx*dy;
     311    const double value = V00*rx*ry + V10*dx*ry + V01*rx*dy + V11*dx*dy;
    312312
    313313    return value;
Note: See TracChangeset for help on using the changeset viewer.