IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 17, 2005, 4:30:50 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

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

Legend:

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

    r4128 r4315  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-06-07 02:29:44 $
     7 *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-06-18 02:30:49 $
    99 *
    1010 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    279279}
    280280
    281 psImage* psImageConvolve(psImage* out, const psImage* in, const psKernel* kernel, psBool direct)
     281psImage* psImageConvolve(psImage* out, const psImage* in, const psKernel* kernel, bool direct)
    282282{
    283283    if (in == NULL) {
  • trunk/psLib/src/imageops/psImageConvolve.h

    r4243 r4315  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-06-14 02:54:15 $
     9 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-06-18 02:30:49 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    123123    const psImage* in,                 ///< the psImage to convolve
    124124    const psKernel* kernel,            ///< kernel to colvolve with
    125     psBool direct                        ///< specifies method, true=direct convolution, false=fourier
     125    bool direct                        ///< specifies method, true=direct convolution, false=fourier
    126126);
    127127
  • trunk/psLib/src/imageops/psImagePixelManip.c

    r3968 r4315  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-05-19 02:08:21 $
     12 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-06-18 02:30:49 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3131#include "psCoord.h"
    3232
    33 psS32 psImageClip(psImage* input,
    34                   psF64 min,
    35                   psF64 vmin,
    36                   psF64 max,
    37                   psF64 vmax)
     33int psImageClip(psImage* input,
     34                double min,
     35                double vmin,
     36                double max,
     37                double vmax)
    3838{
    3939    psS32 numClipped = 0;
     
    140140}
    141141
    142 psS32 psImageClipNaN(psImage* input,
    143                      psF64 value)
     142int psImageClipNaN(psImage* input,
     143                   float value)
    144144{
    145145    psS32 numClipped = 0;
     
    310310}
    311311
    312 psS32 psImageClipComplexRegion(psImage* input,
    313                                psC64 min,
    314                                psC64 vmin,
    315                                psC64 max,
    316                                psC64 vmax)
     312int psImageClipComplexRegion(psImage* input,
     313                             psC64 min,
     314                             psC64 vmin,
     315                             psC64 max,
     316                             psC64 vmax)
    317317{
    318318    psS32 numClipped = 0;
  • trunk/psLib/src/imageops/psImagePixelManip.h

    r4162 r4315  
    88 *  @author Robert DeSonia, MHPCC
    99 *
    10  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2005-06-08 23:40:45 $
     10 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2005-06-18 02:30:49 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3232 *  @return psS32     The number of clipped pixels
    3333 */
    34 psS32 psImageClip(
     34int psImageClip(
    3535    psImage* input,                    ///< the image to clip
    36     psF64 min,                         ///< the minimum image value allowed
    37     psF64 vmin,                        ///< the value pixels < min are set to
    38     psF64 max,                         ///< the maximum image value allowed
    39     psF64 vmax                         ///< the value pixels > max are set to
     36    double min,                        ///< the minimum image value allowed
     37    double vmin,                       ///< the value pixels < min are set to
     38    double max,                        ///< the maximum image value allowed
     39    double vmax                        ///< the value pixels > max are set to
    4040);
    4141
     
    4949 *  @return psS32     The number of clipped pixels
    5050 */
    51 psS32 psImageClipComplexRegion(
     51int psImageClipComplexRegion(
    5252    psImage* input,                    ///< the image to clip
    5353    psC64 min,                         ///< the minimum image value allowed
     
    6464 *  @return psS32     The number of clipped pixels
    6565 */
    66 psS32 psImageClipNaN(
     66int psImageClipNaN(
    6767    psImage* input,                    ///< the image to clip
    68     psF64 value                        ///< the value to set all NaN/Inf values to
     68    float value                        ///< the value to set all NaN/Inf values to
    6969);
    7070
Note: See TracChangeset for help on using the changeset viewer.