IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 23, 2004, 8:31:49 AM (22 years ago)
Author:
desonia
Message:

migrated more psError calls to new style (i.e., psErrorMsg).

File:
1 edited

Legend:

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

    r1840 r1864  
    1010*  @author Robert DeSonia, MHPCC
    1111*
    12 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2004-09-21 22:30:19 $
     12*  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2004-09-23 18:31:49 $
    1414*
    1515*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    100100}
    101101
    102 psImage* psImageSubsection(psImage* image, const char* section)
     102psImage* psImageSubsection(psImage* image,
     103                           const char* section)
    103104{
    104105    int x1;
     
    606607    return out;
    607608}
     609
     610psVector* psImageCut(psVector* out,
     611                     psVector* coords,
     612                     const psImage* input,
     613                     const psImage* restrict mask,
     614                     unsigned int maskVal,
     615                     float startCol,
     616                     float startRow,
     617                     float endCol,
     618                     float endRow,
     619                     float nSamples,
     620                     psImageInterpolateMode mode)
     621{
     622
     623    return NULL;
     624}
     625
     626psVector* psImageRadialCut(psVector* out,
     627                           const psImage* input,
     628                           const psImage* restrict mask,
     629                           unsigned int maskVal,
     630                           float centerCol,
     631                           float centerRow,
     632                           const psVector* radii,
     633                           const psStats* stats)
     634{
     635
     636    return NULL;
     637}
Note: See TracChangeset for help on using the changeset viewer.