IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 24, 2005, 2:51:28 PM (21 years ago)
Author:
drobbin
Message:

made request argument changes (apidelta-report-cycle6)

Location:
trunk/psLib/src/imageops
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImageGeomManip.c

    r4367 r4385  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-06-23 03:50:29 $
     12 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-06-25 00:51:28 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    305305                       const psImage* input,
    306306                       float angle,
    307                        _Complex exposed,
     307                       complex exposed,
    308308                       psImageInterpolateMode mode)
    309309{
     
    597597                      float dx,
    598598                      float dy,
    599                       _Complex exposed,
     599                      complex exposed,
    600600                      psImageInterpolateMode mode)
    601601{
     
    692692                          const psImage *input,
    693693                          const psImage *inputMask,
    694                           int inputMaskVal,
     694                          psMaskType inputMaskVal,
    695695                          const psPlaneTransform *outToIn,
    696696                          psRegion region,
  • trunk/psLib/src/imageops/psImageGeomManip.h

    r4367 r4385  
    88 *  @author Robert DeSonia, MHPCC
    99 *
    10  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2005-06-23 03:50:29 $
     10 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2005-06-25 00:51:28 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    7777    const psImage* input,              ///< input image
    7878    float angle,                       ///< the rotation angle in radians.
    79     _Complex exposed,                  ///< the output image pixel values for non-imagery areas
     79    complex exposed,                   ///< the output image pixel values for non-imagery areas
    8080    psImageInterpolateMode mode        ///< the interpolation mode used
    8181);
     
    9797    float dx,                          ///< the shift in x direction.
    9898    float dy,                          ///< the shift in y direction.
    99     _Complex exposed,                  ///< the output image pixel values for non-imagery areas
     99    complex exposed,                   ///< the output image pixel values for non-imagery areas
    100100    psImageInterpolateMode mode        ///< the interpolation mode to use
    101101);
     
    147147    const psImage *input,              ///< psImage to apply transform to
    148148    const psImage *inputMask,          ///< if not NULL, mask of input psImage
    149     int inputMaskVal,                  ///< masking value for inputMask
     149    psMaskType inputMaskVal,           ///< masking value for inputMask
    150150    const psPlaneTransform *outToIn,   ///< the transform to apply
    151151    psRegion region,                   ///< the size of the transformed image
    152152    const psPixels* pixels,            /**< if not NULL, consists of psPixelCoords and specifies which pixels in
    153                                                          *  output image shall be transformed; otherwise, entire image generated*/
     153                                                             *  output image shall be transformed; otherwise, entire image generated*/
    154154    psImageInterpolateMode mode,       ///< the interpolation scheme to be used
    155155    double exposedValue                   ///< Exposed value to which non-corresponding pixels are set
  • trunk/psLib/src/imageops/psImagePixelExtract.c

    r4367 r4385  
    88 *  @author Robert DeSonia, MHPCC
    99 *
    10  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2005-06-23 03:50:29 $
     10 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2005-06-25 00:51:28 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2727                       const psImage* restrict input,
    2828                       const psImage* restrict mask,
    29                        psU32 maskVal,
     29                       psMaskType maskVal,
    3030                       psRegion region,
    3131                       psImageCutDirection direction,
     
    273273                     const psImage* input,
    274274                     const psImage* mask,
    275                      psU32 maskVal,
     275                     psMaskType maskVal,
    276276                     psRegion region,
    277277                     unsigned int nSamples,
     
    407407                           const psImage* input,
    408408                           const psImage* restrict mask,
    409                            psU32 maskVal,
     409                           psMaskType maskVal,
    410410                           float x,
    411411                           float y,
  • trunk/psLib/src/imageops/psImagePixelExtract.h

    r4367 r4385  
    88*  @author Robert DeSonia, MHPCC
    99*
    10 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2005-06-23 03:50:29 $
     10*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2005-06-25 00:51:28 $
    1212*
    1313*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6464    const psImage* input,              ///< the input image in which to perform the slice
    6565    const psImage* mask,               ///< the mask for the input image.
    66     psU32 maskVal,                     ///< the mask value to apply to the mask
     66    psMaskType maskVal,                ///< the mask value to apply to the mask
    6767    psRegion region,                   ///< the slice region
    6868    psImageCutDirection direction,     ///< the slice dimension and direction
     
    8484 *  psF64.
    8585 *
    86  *  @return psVector    resulting vector
     86 *  @return psVector*    resulting vector
    8787 */
    8888psVector* psImageCut(
     
    9292    const psImage* input,              ///< the input image in which to perform the cut
    9393    const psImage* mask,               ///< the mask for the input image.
    94     psU32 maskVal,                     ///< the mask value to apply to the mask
     94    psMaskType maskVal,                ///< the mask value to apply to the mask
    9595    psRegion region,                   ///< the start and end points to cut along
    9696    unsigned int nSamples,             ///< the number of samples along the cut
     
    115115    const psImage* input,              ///< the input image in which to perform the cut
    116116    const psImage* mask,               ///< the mask for the input image.
    117     psU32 maskVal,                     ///< the mask value to apply to the mask
     117    psMaskType maskVal,                ///< the mask value to apply to the mask
    118118    float x,                           ///< the column of the center of the cut circle
    119119    float y,                           ///< the row of the center of the cut circle
  • trunk/psLib/src/imageops/psImagePixelManip.c

    r4367 r4385  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-06-23 03:50:29 $
     12 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-06-25 00:51:28 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    311311
    312312int psImageClipComplexRegion(psImage* input,
    313                              _Complex min,
    314                              _Complex vmin,
    315                              _Complex max,
    316                              _Complex vmax)
     313                             complex min,
     314                             complex vmin,
     315                             complex max,
     316                             complex vmax)
    317317{
    318318    psS32 numClipped = 0;
  • trunk/psLib/src/imageops/psImagePixelManip.h

    r4367 r4385  
    88 *  @author Robert DeSonia, MHPCC
    99 *
    10  *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2005-06-23 03:50:29 $
     10 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2005-06-25 00:51:28 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5151int psImageClipComplexRegion(
    5252    psImage* input,                    ///< the image to clip
    53     _Complex min,                      ///< the minimum image value allowed
    54     _Complex vmin,                     ///< the value pixels < min are set to
    55     _Complex max,                      ///< the maximum image value allowed
    56     _Complex vmax                      ///< the value pixels > max are set to
     53    complex min,                       ///< the minimum image value allowed
     54    complex vmin,                      ///< the value pixels < min are set to
     55    complex max,                       ///< the maximum image value allowed
     56    complex vmax                       ///< the value pixels > max are set to
    5757);
    5858
  • trunk/psLib/src/imageops/psImageStats.c

    r4029 r4385  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.74 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-05-25 20:26:55 $
     11 *  @version $Revision: 1.75 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-06-25 00:51:28 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4747                      const psImage* in,
    4848                      const psImage* mask,
    49                       psS32 maskVal)
     49                      psMaskType maskVal)
    5050{
    5151    psVector *junkData = NULL;
     
    122122                              const psImage* in,
    123123                              const psImage* mask,
    124                               psU32 maskVal)
     124                              psMaskType maskVal)
    125125{
    126126    PS_ASSERT_PTR_NON_NULL(out, NULL);
  • trunk/psLib/src/imageops/psImageStats.h

    r4243 r4385  
    99*  @author GLG, MHPCC
    1010*
    11 *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2005-06-14 02:54:15 $
     11*  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2005-06-25 00:51:28 $
    1313*
    1414*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4040    const psImage* in,                 ///< image (or subimage) to calculate stats
    4141    const psImage* mask,               ///< mask data for image (NULL ok)
    42     psS32 maskVal                      ///< mask Mask for mask
     42    psMaskType maskVal                 ///< mask value for mask
    4343);
    4444
     
    5555    const psImage* in,                 ///< Image data to be histogramed.
    5656    const psImage* mask,               ///< mask data for image (NULL ok)
    57     psU32 maskVal                      ///< mask Mask for mask
     57    psMaskType maskVal                 ///< mask Mask for mask
    5858);
    5959
Note: See TracChangeset for help on using the changeset viewer.