IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 20, 2007, 10:12:44 AM (19 years ago)
Author:
magnier
Message:

adding output target to psImageConvolveDirect API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/detrend/pmShifts.c

    r12696 r14332  
    441441#if 1
    442442        // Always do direct convolution (no fuss with edge effects)
    443         psImage *convolved = psImageConvolveDirect(detrend->image, kernel);
     443        psImage *convolved = psImageConvolveDirect(NULL, detrend->image, kernel);
    444444#else
    445445        // Kernel size-dependent convolution --- if it's big, use the FFT
     
    448448        psImage *convolved;
    449449        if (xSize * ySize < FFT_SIZE * FFT_SIZE) {
    450             convolved = psImageConvolveDirect(detrend->image, kernel);
     450            convolved = psImageConvolveDirect(NULL, detrend->image, kernel);
    451451        } else {
    452452            // This is a little dodgy --- making choices about parameters without the user's input
Note: See TracChangeset for help on using the changeset viewer.