IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 12:44:25 PM (22 years ago)
Author:
desonia
Message:

fixed some stupid indent-induced formating problems and added doxygen
comments.

File:
1 edited

Legend:

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

    r1407 r1426  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-08-07 00:06:06 $
     13 *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-08-09 22:44:25 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3232 *  @return int     The number of clipped pixels
    3333 */
    34 int psImageClip(psImage * input,        // /< the image to clip
    35                 psF64 min,      // /< the minimum image value allowed
    36                 psF64 vmin,     // /< the value pixels < min are set to
    37                 psF64 max,      // /< the maximum image value allowed
    38                 psF64 vmax      // /< the value pixels > max are set to
     34int psImageClip(psImage * input,        ///< the image to clip
     35                psF64 min,      ///< the minimum image value allowed
     36                psF64 vmin,     ///< the value pixels < min are set to
     37                psF64 max,      ///< the maximum image value allowed
     38                psF64 vmax      ///< the value pixels > max are set to
    3939               );
    4040
     
    4848 *  @return int     The number of clipped pixels
    4949 */
    50 int psImageClipComplexRegion(psImage * input,   // /< the image to clip
    51                              psC64 min, // /< the minimum image value allowed
    52                              psC64 vmin,        // /< the value pixels < min are set to
    53                              psC64 max, // /< the maximum image value allowed
    54                              psC64 vmax // /< the value pixels > max are set to
     50int psImageClipComplexRegion(psImage * input,   ///< the image to clip
     51                             psC64 min, ///< the minimum image value allowed
     52                             psC64 vmin,        ///< the value pixels < min are set to
     53                             psC64 max, ///< the maximum image value allowed
     54                             psC64 vmax ///< the value pixels > max are set to
    5555                            );
    5656
     
    6262 *  @return int     The number of clipped pixels
    6363 */
    64 int psImageClipNaN(psImage * input,     // /< the image to clip
    65                    psF64 value  // /< the value to set all NaN/Inf values to
     64int psImageClipNaN(psImage * input,     ///< the image to clip
     65                   psF64 value  ///< the value to set all NaN/Inf values to
    6666                  );
    6767
     
    7777 *  @return int         0 if success, non-zero if failed.
    7878 */
    79 int psImageOverlaySection(psImage * image,      // /< target image
    80                           const psImage * overlay,      // /< the overlay image
    81                           int col0,     // /< the column to start overlay
    82                           int row0,     // /< the row to start overlay
    83                           const char *op        // /< the operation to perform for overlay
     79int psImageOverlaySection(psImage * image,      ///< target image
     80                          const psImage * overlay,      ///< the overlay image
     81                          int col0,     ///< the column to start overlay
     82                          int row0,     ///< the row to start overlay
     83                          const char *op        ///< the operation to perform for overlay
    8484                         );
    8585
     
    9494 *  @return psImage    new image formed by rebinning input image.
    9595 */
    96 psImage *psImageRebin(psImage * out,    // /< an psImage to recycle.  If NULL, a new image is created
    97                       const psImage * in,       // /< input image
    98                       unsigned int scale,       // /< the scale to rebin for each dimension
    99                       const psStats * stats     // /< the statistic to perform when rebinning.  Only one
     96psImage *psImageRebin(psImage * out,    ///< an psImage to recycle.  If NULL, a new image is created
     97                      const psImage * in,       ///< input image
     98                      unsigned int scale,       ///< the scale to rebin for each dimension
     99                      const psStats * stats     ///< the statistic to perform when rebinning.  Only one
    100100                      // method should be set.
    101101                     );
    102102
    103 psImage *psImageResample(psImage * out, // /< an psImage to recycle.  If NULL, a new image is created
    104                          const psImage * in,    // /< input image
     103psImage *psImageResample(psImage * out, ///< an psImage to recycle.  If NULL, a new image is created
     104                         const psImage * in,    ///< input image
    105105                         int scale, psImageInterpolateMode mode);
    106106
    107 psImage *psImageRotate(psImage * out,   // /< an psImage to recycle.  If NULL, a new image is created
    108                        const psImage * in,      // /< input image
     107psImage *psImageRotate(psImage * out,   ///< an psImage to recycle.  If NULL, a new image is created
     108                       const psImage * in,      ///< input image
    109109                       float angle, float unexposedValue, psImageInterpolateMode mode);
    110110
    111 psImage *psImageShift(psImage * out,    // /< an psImage to recycle.  If NULL, a new image is created
    112                       const psImage * in,       // /< input image
     111psImage *psImageShift(psImage * out,    ///< an psImage to recycle.  If NULL, a new image is created
     112                      const psImage * in,       ///< input image
    113113                      float dx, float dy, float unexposedValue, psImageInterpolateMode mode);
    114114
     
    121121 *  @return psImage*    the rolled version of the input image.
    122122 */
    123 psImage *psImageRoll(psImage * out,     // /< an psImage to recycle.  If NULL, a new image is created
    124                      const psImage * in,        // /< input image
    125                      int dx,    // /< number of pixels to roll in the x-dimension
    126                      int dy     // /< number of pixels to roll in the y-dimension
     123psImage *psImageRoll(psImage * out,     ///< an psImage to recycle.  If NULL, a new image is created
     124                     const psImage * in,        ///< input image
     125                     int dx,    ///< number of pixels to roll in the x-dimension
     126                     int dy     ///< number of pixels to roll in the y-dimension
    127127                    );
    128128
Note: See TracChangeset for help on using the changeset viewer.