Changeset 14332 for trunk/psModules/src/detrend/pmShifts.c
- Timestamp:
- Jul 20, 2007, 10:12:44 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/detrend/pmShifts.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/detrend/pmShifts.c
r12696 r14332 441 441 #if 1 442 442 // Always do direct convolution (no fuss with edge effects) 443 psImage *convolved = psImageConvolveDirect( detrend->image, kernel);443 psImage *convolved = psImageConvolveDirect(NULL, detrend->image, kernel); 444 444 #else 445 445 // Kernel size-dependent convolution --- if it's big, use the FFT … … 448 448 psImage *convolved; 449 449 if (xSize * ySize < FFT_SIZE * FFT_SIZE) { 450 convolved = psImageConvolveDirect( detrend->image, kernel);450 convolved = psImageConvolveDirect(NULL, detrend->image, kernel); 451 451 } else { 452 452 // This is a little dodgy --- making choices about parameters without the user's input
Note:
See TracChangeset
for help on using the changeset viewer.
