IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 28, 2010, 5:37:34 PM (16 years ago)
Author:
eugene
Message:

add windowed FFT option (currently unused)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fft/psImageFFT.h

    r28998 r29592  
    8484    );
    8585
     86/// Convolve an image with a kernel, using the FFT, applying a window function
     87///
     88/// This is appropriate for larger kernels, where the direct convolution is slow.  The input image and kernel
     89/// are suitably padded to avoid wrap-around effects.
     90psImage *psImageConvolveFFTwithWindow(
     91    psImage *out,                       ///< Output image, or NULL
     92    const psImage *in,                  ///< Image to convolve
     93    const psImage *mask,                ///< Corresponding mask
     94    psImageMaskType maskVal,            ///< Value to mask
     95    const psKernel *kernel              ///< kernel to convolve with
     96    );
     97
    8698/// Allocate an the psKernelFFT structure
    8799psKernelFFT *psKernelFFTAlloc(
Note: See TracChangeset for help on using the changeset viewer.