IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 19, 2006, 3:13:11 PM (20 years ago)
Author:
drobbin
Message:

edited files to reflect changes & patches applied by IFA. Currently fixing testing procedures.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/mathtypes/psImage.c

    r6874 r6912  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.102 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2006-04-17 22:00:03 $
     11 *  @version $Revision: 1.103 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2006-04-20 01:13:11 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    733733                                       psImageInterpolateMode mode)
    734734{
    735 
    736735    PS_ASSERT_IMAGE_NON_NULL(input, unexposedValue);
    737     /*    if ( x < input->col0 || x >= (input->col0 + input->numCols) ) {
    738             psError(PS_ERR_BAD_PARAMETER_VALUE, true,
    739                 "x-input in psImagePixelInterpolate is outside of image region.\n");
    740             return unexposedValue;
    741         }
    742         if ( y < input->row0 || y >= (input->row0 + input->numRows) ) {
    743             psError(PS_ERR_BAD_PARAMETER_VALUE, true,
    744                 "y-input in psImagePixelInterpolate is outside of image region.\n");
    745             return unexposedValue;
    746         }
    747         x -= input->col0;
    748         y -= input->row0;
    749     */
    750736
    751737    #define PSIMAGE_PIXEL_INTERPOLATE_CASE(TYPE)                             \
Note: See TracChangeset for help on using the changeset viewer.