Changeset 5624 for trunk/psLib/src/imageops
- Timestamp:
- Nov 29, 2005, 4:00:11 PM (21 years ago)
- Location:
- trunk/psLib/src/imageops
- Files:
-
- 2 edited
-
psImageConvolve.c (modified) (3 diffs)
-
psImageConvolve.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageConvolve.c
r5573 r5624 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1.2 7$ $Name: not supported by cvs2svn $8 * @date $Date: 2005-11- 22 20:15:35$7 * @version $Revision: 1.28 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2005-11-30 02:00:07 $ 9 9 * 10 10 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 487 487 } 488 488 489 voidpsImageSmooth (psImage *image,489 bool psImageSmooth (psImage *image, 490 490 double sigma, 491 491 double Nsigma) … … 569 569 PS_ERRORTEXT_psImage_IMAGE_TYPE_UNSUPPORTED, 570 570 typeStr); 571 } 572 } 571 return false; 572 } 573 } 574 return true; 573 575 } 574 576 -
trunk/psLib/src/imageops/psImageConvolve.h
r4920 r5624 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $10 * @date $Date: 2005- 08-31 02:07:11$9 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-11-30 02:00:07 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 141 141 * Applies a circularly symmetric Gaussian smoothing first in x and then in y 142 142 * directions with just a vector. This process is 2N faster than 2D convolutions (in general). 143 * 144 * @return bool TRUE if successful, otherwise FALSE 143 145 */ 144 voidpsImageSmooth(146 bool psImageSmooth( 145 147 psImage *image, ///< the image to be smoothed 146 148 double sigma, ///< the width of the smoothing kernel in pixels
Note:
See TracChangeset
for help on using the changeset viewer.
