IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 18, 2005, 11:44:40 AM (21 years ago)
Author:
drobbin
Message:

folded in code from bug 481. Tests still to be written.

File:
1 edited

Legend:

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

    r4540 r4815  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-07-12 19:12:01 $
     9 *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-08-18 21:44:40 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    126126);
    127127
     128/** Smooths an image by parts using 1D Gaussian independently in x and y.
     129 *
     130 *  Applies a circularly symmetric Gaussian smoothing first in x and then in y
     131 *  directions with just a vector.  This process is 2N faster than 2D convolutions (in general).
     132 */
     133void psImageSmooth(
     134    psImage *image,                    ///< the image to be smoothed
     135    float sigma,                       ///< the width of the smoothing kernel in pixels
     136    float Nsigma                       ///< the size of the smoothing box in sigmas
     137);
     138
     139
    128140#endif // #ifndef PS_IMAGE_CONVOLVE_H
Note: See TracChangeset for help on using the changeset viewer.