Changeset 4934
- Timestamp:
- Aug 31, 2005, 11:58:22 AM (21 years ago)
- Location:
- trunk/psLib/src/imageops
- Files:
-
- 4 edited
-
psImageGeomManip.c (modified) (3 diffs)
-
psImageGeomManip.h (modified) (4 diffs)
-
psImagePixelManip.c (modified) (2 diffs)
-
psImagePixelManip.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageGeomManip.c
r4920 r4934 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1.1 5$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-08-31 02:07:11$12 * @version $Revision: 1.16 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-08-31 21:58:22 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 305 305 const psImage* input, 306 306 float angle, 307 complex doubleexposed,307 complex exposed, 308 308 psImageInterpolateMode mode) 309 309 { … … 597 597 float dx, 598 598 float dy, 599 complex doubleexposed,599 complex exposed, 600 600 psImageInterpolateMode mode) 601 601 { -
trunk/psLib/src/imageops/psImageGeomManip.h
r4920 r4934 8 8 * @author Robert DeSonia, MHPCC 9 9 * 10 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $11 * @date $Date: 2005-08-31 02:07:11$10 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2005-08-31 21:58:22 $ 12 12 * 13 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 77 77 const psImage* input, ///< input image 78 78 float angle, ///< the rotation angle in radians. 79 complex doubleexposed, ///< the output image pixel values for non-imagery areas79 complex exposed, ///< the output image pixel values for non-imagery areas 80 80 psImageInterpolateMode mode ///< the interpolation mode used 81 81 ); … … 97 97 float dx, ///< the shift in x direction. 98 98 float dy, ///< the shift in y direction. 99 complex doubleexposed, ///< the output image pixel values for non-imagery areas99 complex exposed, ///< the output image pixel values for non-imagery areas 100 100 psImageInterpolateMode mode ///< the interpolation mode to use 101 101 ); … … 151 151 psRegion region, ///< the size of the transformed image 152 152 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*/ 154 154 psImageInterpolateMode mode, ///< the interpolation scheme to be used 155 155 double exposedValue ///< Exposed value to which non-corresponding pixels are set -
trunk/psLib/src/imageops/psImagePixelManip.c
r4920 r4934 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-08-31 02:07:11$12 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-08-31 21:58:22 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 311 311 312 312 int psImageClipComplexRegion(psImage* input, 313 complex doublemin,314 complex doublevmin,315 complex doublemax,316 complex doublevmax)313 complex min, 314 complex vmin, 315 complex max, 316 complex vmax) 317 317 { 318 318 psS32 numClipped = 0; -
trunk/psLib/src/imageops/psImagePixelManip.h
r4920 r4934 8 8 * @author Robert DeSonia, MHPCC 9 9 * 10 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $11 * @date $Date: 2005-08-31 02:07:11$10 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2005-08-31 21:58:22 $ 12 12 * 13 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 51 51 int psImageClipComplexRegion( 52 52 psImage* input, ///< the image to clip 53 complex doublemin, ///< the minimum image value allowed54 complex doublevmin, ///< the value pixels < min are set to55 complex doublemax, ///< the maximum image value allowed56 complex doublevmax ///< the value pixels > max are set to53 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 57 57 ); 58 58
Note:
See TracChangeset
for help on using the changeset viewer.
