Changeset 4315 for trunk/psLib/src/imageops
- Timestamp:
- Jun 17, 2005, 4:30:50 PM (21 years ago)
- Location:
- trunk/psLib/src/imageops
- Files:
-
- 4 edited
-
psImageConvolve.c (modified) (2 diffs)
-
psImageConvolve.h (modified) (2 diffs)
-
psImagePixelManip.c (modified) (4 diffs)
-
psImagePixelManip.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageConvolve.c
r4128 r4315 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1.1 7$ $Name: not supported by cvs2svn $8 * @date $Date: 2005-06- 07 02:29:44$7 * @version $Revision: 1.18 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2005-06-18 02:30:49 $ 9 9 * 10 10 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 279 279 } 280 280 281 psImage* psImageConvolve(psImage* out, const psImage* in, const psKernel* kernel, psBool direct)281 psImage* psImageConvolve(psImage* out, const psImage* in, const psKernel* kernel, bool direct) 282 282 { 283 283 if (in == NULL) { -
trunk/psLib/src/imageops/psImageConvolve.h
r4243 r4315 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-06-1 4 02:54:15$9 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-06-18 02:30:49 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 123 123 const psImage* in, ///< the psImage to convolve 124 124 const psKernel* kernel, ///< kernel to colvolve with 125 psBool direct ///< specifies method, true=direct convolution, false=fourier125 bool direct ///< specifies method, true=direct convolution, false=fourier 126 126 ); 127 127 -
trunk/psLib/src/imageops/psImagePixelManip.c
r3968 r4315 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-0 5-19 02:08:21$12 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-06-18 02:30:49 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 31 31 #include "psCoord.h" 32 32 33 psS32psImageClip(psImage* input,34 psF64min,35 psF64vmin,36 psF64max,37 psF64vmax)33 int psImageClip(psImage* input, 34 double min, 35 double vmin, 36 double max, 37 double vmax) 38 38 { 39 39 psS32 numClipped = 0; … … 140 140 } 141 141 142 psS32psImageClipNaN(psImage* input,143 psF64value)142 int psImageClipNaN(psImage* input, 143 float value) 144 144 { 145 145 psS32 numClipped = 0; … … 310 310 } 311 311 312 psS32psImageClipComplexRegion(psImage* input,313 psC64 min,314 psC64 vmin,315 psC64 max,316 psC64 vmax)312 int psImageClipComplexRegion(psImage* input, 313 psC64 min, 314 psC64 vmin, 315 psC64 max, 316 psC64 vmax) 317 317 { 318 318 psS32 numClipped = 0; -
trunk/psLib/src/imageops/psImagePixelManip.h
r4162 r4315 8 8 * @author Robert DeSonia, MHPCC 9 9 * 10 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $11 * @date $Date: 2005-06- 08 23:40:45$10 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2005-06-18 02:30:49 $ 12 12 * 13 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 32 32 * @return psS32 The number of clipped pixels 33 33 */ 34 psS32psImageClip(34 int psImageClip( 35 35 psImage* input, ///< the image to clip 36 psF64 min,///< the minimum image value allowed37 psF64 vmin,///< the value pixels < min are set to38 psF64 max,///< the maximum image value allowed39 psF64 vmax///< the value pixels > max are set to36 double min, ///< the minimum image value allowed 37 double vmin, ///< the value pixels < min are set to 38 double max, ///< the maximum image value allowed 39 double vmax ///< the value pixels > max are set to 40 40 ); 41 41 … … 49 49 * @return psS32 The number of clipped pixels 50 50 */ 51 psS32psImageClipComplexRegion(51 int psImageClipComplexRegion( 52 52 psImage* input, ///< the image to clip 53 53 psC64 min, ///< the minimum image value allowed … … 64 64 * @return psS32 The number of clipped pixels 65 65 */ 66 psS32psImageClipNaN(66 int psImageClipNaN( 67 67 psImage* input, ///< the image to clip 68 psF64value ///< the value to set all NaN/Inf values to68 float value ///< the value to set all NaN/Inf values to 69 69 ); 70 70
Note:
See TracChangeset
for help on using the changeset viewer.
