IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 6, 2006, 5:22:07 PM (20 years ago)
Author:
Paul Price
Message:

Merging the pslib "additional" functions from the modules into psLib proper.

Added jpeg directory for psImageJpeg.
Changes to build system (configure.ac, and various Makefile.am)

psVectorSmooth: changed API to allow optional output vector
psSparse: changed sizes to type "long"; added "const"
psRegionIsBad: Renamed psRegionIsNaN
psImageBicubeFit: changed sizes to "long"; added a "const"
psLine: changed sizes to "long"
psImageUnbin: description required in SDRS
psImageClippedStats: renaming to psImageBackground; removing static structures; API changed!
psImageFlipX, psImageFlipY merged to psImageFlip
psStringSubstitute: added "const"

File:
1 edited

Legend:

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

    r6750 r7380  
    88 *  @author Robert DeSonia, MHPCC
    99 *
    10  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2006-04-01 02:43:57 $
     10 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2006-06-07 03:22:06 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    151151    psRegion region,                   ///< the size of the transformed image
    152152    const psPixels* pixels,            /**< if not NULL, consists of psPixelCoords and specifies
    153                                             * which pixels in output image shall be transformed;
    154                                             * otherwise, entire image generated*/
     153                                                * which pixels in output image shall be transformed;
     154                                                * otherwise, entire image generated*/
    155155    psImageInterpolateMode mode,       ///< the interpolation scheme to be used
    156156    double exposedValue                ///< Exposed value to which non-corresponding pixels are set
    157157);
    158158
     159// Flip the input image
     160psImage *psImageFlip(psImage *output,   // Output image, or NULL
     161                     const psImage *input, // Input image
     162                     bool xFlip,        // Flip x axis?
     163                     bool yFlip         // Flip y axis?
     164                    );
     165
    159166#endif // #ifndef PS_IMAGE_GEOM_MANIP_H
Note: See TracChangeset for help on using the changeset viewer.