IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

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

    r1426 r1440  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-08-09 22:44:25 $
     13 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-08-09 23:34:58 $
    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
     34int psImageClip(psImage* input,        ///< the image to clip
    3535                psF64 min,      ///< the minimum image value allowed
    3636                psF64 vmin,     ///< the value pixels < min are set to
     
    4848 *  @return int     The number of clipped pixels
    4949 */
    50 int psImageClipComplexRegion(psImage * input,   ///< the image to clip
     50int psImageClipComplexRegion(psImage* input,   ///< the image to clip
    5151                             psC64 min, ///< the minimum image value allowed
    5252                             psC64 vmin,        ///< the value pixels < min are set to
     
    6262 *  @return int     The number of clipped pixels
    6363 */
    64 int psImageClipNaN(psImage * input,     ///< the image to clip
     64int psImageClipNaN(psImage* input,     ///< the image to clip
    6565                   psF64 value  ///< the value to set all NaN/Inf values to
    6666                  );
     
    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
     79int psImageOverlaySection(psImage* image,      ///< target image
     80                          const psImage* overlay,      ///< the overlay image
    8181                          int col0,     ///< the column to start overlay
    8282                          int row0,     ///< the row to start overlay
     
    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
     96psImage* psImageRebin(psImage* out,    ///< an psImage to recycle.  If NULL, a new image is created
     97                      const psImage* in,       ///< input image
    9898                      unsigned int scale,       ///< the scale to rebin for each dimension
    99                       const psStats * stats     ///< the statistic to perform when rebinning.  Only one
     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
     
    119119 *  defined for psU8, psS8, psS16, psF32, psF64, psC32, and psC64.
    120120 *
    121  *  @return psImage*    the rolled version of the input image.
     121 *  @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
     123psImage* psImageRoll(psImage* out,     ///< an psImage to recycle.  If NULL, a new image is created
     124                     const psImage* in,        ///< input image
    125125                     int dx,    ///< number of pixels to roll in the x-dimension
    126126                     int dy     ///< number of pixels to roll in the y-dimension
Note: See TracChangeset for help on using the changeset viewer.