Changeset 6227 for trunk/psLib/src/imageops
- Timestamp:
- Jan 27, 2006, 3:12:17 PM (20 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
r5511 r6227 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1.1 7$ $Name: not supported by cvs2svn $13 * @date $Date: 200 5-11-14 22:18:33$12 * @version $Revision: 1.18 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2006-01-28 01:12:11 $ 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 exposed,307 double complex exposed, 308 308 psImageInterpolateMode mode) 309 309 { … … 597 597 float dx, 598 598 float dy, 599 complex exposed,599 double complex exposed, 600 600 psImageInterpolateMode mode) 601 601 { -
trunk/psLib/src/imageops/psImageGeomManip.h
r4934 r6227 8 8 * @author Robert DeSonia, MHPCC 9 9 * 10 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $11 * @date $Date: 200 5-08-31 21:58:22$10 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2006-01-28 01:12:11 $ 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 exposed, ///< the output image pixel values for non-imagery areas79 double 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 exposed, ///< the output image pixel values for non-imagery areas99 double 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
r5227 r6227 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1.1 4$ $Name: not supported by cvs2svn $13 * @date $Date: 200 5-10-06 02:41:07$12 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2006-01-28 01:12:11 $ 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 min,314 complex vmin,315 complex max,316 complex vmax)313 double complex min, 314 double complex vmin, 315 double complex max, 316 double complex vmax) 317 317 { 318 318 psS32 numClipped = 0; -
trunk/psLib/src/imageops/psImagePixelManip.h
r5227 r6227 8 8 * @author Robert DeSonia, MHPCC 9 9 * 10 * @version $Revision: 1.1 4$ $Name: not supported by cvs2svn $11 * @date $Date: 200 5-10-06 02:41:07$10 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2006-01-28 01:12:11 $ 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 min,///< the minimum image value allowed54 complex vmin,///< the value pixels < min are set to55 complex max,///< the maximum image value allowed56 complex vmax///< the value pixels > max are set to53 double complex min, ///< the minimum image value allowed 54 double complex vmin, ///< the value pixels < min are set to 55 double complex max, ///< the maximum image value allowed 56 double complex vmax ///< the value pixels > max are set to 57 57 ); 58 58
Note:
See TracChangeset
for help on using the changeset viewer.
