IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 26, 2004, 2:57:34 PM (22 years ago)
Author:
desonia
Message:

converted native C types to ps Types, where practical.

File:
1 edited

Legend:

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

    r2088 r2204  
    1010*  @author Robert DeSonia, MHPCC
    1111*
    12 *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2004-10-13 22:05:03 $
     12*  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2004-10-27 00:57:31 $
    1414*
    1515*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5454psImage* psImageSubset(
    5555    psImage* image,                    ///< Parent image.
    56     int col0,                          ///< starting column of subimage
    57     int row0,                          ///< starting row of subimage
    58     int col1,                          ///< exclusive end column of subimage.
    59     int row1                           ///< exclusive end row of subimage
     56    psS32 col0,                          ///< starting column of subimage
     57    psS32 row0,                          ///< starting row of subimage
     58    psS32 col1,                          ///< exclusive end column of subimage.
     59    psS32 row1                           ///< exclusive end row of subimage
    6060);
    6161
     
    9393psImage* psImageTrim(
    9494    psImage* image,                    ///< image to trim
    95     int col0,                          ///< column of trim region's left boundary
    96     int row0,                          ///< row of trim region's lower boundary
    97     int col1,                          ///< column of trim region's right boundary
    98     int row1                           ///< row of trim region's upper boundary
     95    psS32 col0,                          ///< column of trim region's left boundary
     96    psS32 row0,                          ///< row of trim region's lower boundary
     97    psS32 col1,                          ///< column of trim region's right boundary
     98    psS32 row1                           ///< row of trim region's upper boundary
    9999);
    100100
     
    130130    const psImage* restrict input,     ///< the input image in which to perform the slice
    131131    const psImage* restrict mask,      ///< the mask for the input image.
    132     unsigned int maskVal,              ///< the mask value to apply to the mask
    133     int col0,                          ///< the leftmost column of the slice region
    134     int row0,                          ///< the bottommost row of the slice region
    135     int col1,                          ///< exclusive end column of the slice region
    136     int row1,                           ///< exclusive end row of the slice region
     132    psU32 maskVal,              ///< the mask value to apply to the mask
     133    psS32 col0,                          ///< the leftmost column of the slice region
     134    psS32 row0,                          ///< the bottommost row of the slice region
     135    psS32 col1,                          ///< exclusive end column of the slice region
     136    psS32 row1,                           ///< exclusive end row of the slice region
    137137    psImageCutDirection direction,     ///< the slice dimension and direction
    138138    const psStats* stats               ///< the statistic to perform in slice operation
     
    161161    const psImage* input,              ///< the input image in which to perform the cut
    162162    const psImage* restrict mask,      ///< the mask for the input image.
    163     unsigned int maskVal,              ///< the mask value to apply to the mask
     163    psU32 maskVal,              ///< the mask value to apply to the mask
    164164    float startCol,                    ///< the column of the start of the cut line
    165165    float startRow,                    ///< the row of the start of the cut line
    166166    float endCol,                      ///< the column of the end of the cut line
    167167    float endRow,                      ///< the row of the end of the cut line
    168     unsigned int nSamples,             ///< the number of samples along the cut
     168    psU32 nSamples,             ///< the number of samples along the cut
    169169    psImageInterpolateMode mode        ///< the interpolation method to use
    170170);
     
    187187    const psImage* input,              ///< the input image in which to perform the cut
    188188    const psImage* restrict mask,      ///< the mask for the input image.
    189     unsigned int maskVal,              ///< the mask value to apply to the mask
     189    psU32 maskVal,              ///< the mask value to apply to the mask
    190190    float centerCol,                   ///< the column of the center of the cut circle
    191191    float centerRow,                   ///< the row of the center of the cut circle
Note: See TracChangeset for help on using the changeset viewer.