IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 15, 2009, 12:45:01 PM (17 years ago)
Author:
Paul Price
Message:

Merging branches/pap (detection efficiency development) into trunk.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/psLib/src/imageops/psImageConvolve.h

    r24272 r25383  
    222222    );
    223223
     224/// Smooth particular pixels on an image, allowing for masked pixels
     225///
     226/// Applies a circularly symmetric Gaussian smoothing first in x and then in y
     227/// directions with just a vector.  This process is 2N faster than 2D convolutions (in general).
     228psVector *psImageSmoothMaskPixels(
     229    const psImage *image,               ///< Input image (F32)
     230    const psImage *mask,                ///< Mask image
     231    psImageMaskType maskVal,            ///< Value to mask
     232    const psVector *x,                  ///< x coordinates
     233    const psVector *y,                  ///< y coordinates
     234    float sigma,                        ///< Width of the smoothing kernel (pixels)
     235    float numSigma,                     ///< Size of the smoothing box (sigma)
     236    float minGauss                      ///< Minimum fraction of Gaussian to accept
     237    );
    224238
    225239psImage *psImageSmoothMask_Threaded(psImage *output,
Note: See TracChangeset for help on using the changeset viewer.