IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1292 for trunk/psLib/test


Ignore:
Timestamp:
Jul 23, 2004, 4:00:21 PM (22 years ago)
Author:
desonia
Message:

initial coding of psImageSlice and changed psImageRotate to be more inline
with ADD (mathematically equivalent).

Location:
trunk/psLib/test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/astronomy/builddir/tst_psTime_01.d

    r1223 r1292  
    33  ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
    44  ../../include/psString.h ../../include/psType.h ../../include/psList.h \
    5   ../../include/psCompare.h ../../include/psVector.h \
    6   ../../include/psHash.h ../../include/psScalar.h ../../include/psImage.h \
    7   ../../include/psBitSet.h ../../include/psSort.h ../../include/psStats.h \
     5  ../../include/psCompare.h ../../include/psArray.h \
     6  ../../include/psHash.h ../../include/psScalar.h \
     7  ../../include/psVector.h ../../include/psImage.h \
     8  ../../include/psBitSet.h ../../include/psStats.h \
    89  ../../include/psMatrix.h ../../include/psMatrixVectorArithmetic.h \
    910  ../../include/psFFT.h ../../include/psImageIO.h \
    10   ../../include/psImageManip.h ../../include/psFunctions.h \
    11   ../../include/psMinimize.h ../../include/psTime.h \
    12   ../../include/psTest.h
     11  ../../include/psImageManip.h ../../include/psImageExtraction.h \
     12  ../../include/psFunctions.h ../../include/psMinimize.h \
     13  ../../include/psTime.h ../../include/psTest.h
  • trunk/psLib/test/image/tst_psImageStats03.c

    r1234 r1292  
    4646            x = 0.2 + (float) i;
    4747            y = 0.2 + (float) j;
    48             pixel = psImagePixelInterpolation(tmpImage, x, y);
     48            pixel = psImagePixelInterpolate(tmpImage, x, y,0,PS_INTERPOLATE_BILINEAR);
    4949            printf("%.1f ", pixel);
    5050        }
     
    5656            x = 0.2 + (float) i;
    5757            y = 0.2 + (float) j;
    58             pixel = psImagePixelInterpolation(tmpImage, x, y);
     58            pixel = psImagePixelInterpolate(tmpImage, x, y,0,PS_INTERPOLATE_BILINEAR);
    5959            printf("image[%.1f][%.1f] is interpolated at %.1f\n", x, y, pixel);
    6060        }
Note: See TracChangeset for help on using the changeset viewer.