IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 18, 2005, 4:08:21 PM (21 years ago)
Author:
desonia
Message:

reorganized the functions into more files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/image/psImageConvolve.c

    r3702 r3968  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-04-15 00:12:08 $
     7 *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-05-19 02:08:21 $
    99 *
    1010 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1515#include "psImageConvolve.h"
    1616#include "psImageFFT.h"
    17 #include "psImageExtraction.h"
     17#include "psImageStructManip.h"
    1818#include "psBinaryOp.h"
    1919#include "psMemory.h"
     
    454454
    455455        // subset out the padded area now.
    456         psImage* complexOutSansPad = psImageSubset(complexOut,
    457                                      FOURIER_PADDING,FOURIER_PADDING,
    458                                      FOURIER_PADDING+numCols,FOURIER_PADDING+numRows);
     456        psImage* complexOutSansPad = psImageSubset(complexOut,(psRegion) {
     457                                         FOURIER_PADDING,FOURIER_PADDING,
     458                                         FOURIER_PADDING+numCols,FOURIER_PADDING+numRows
     459                                     }
     460                                                  );
    459461
    460462        out = psImageRecycle(out,numCols,numRows,PS_TYPE_F32);
Note: See TracChangeset for help on using the changeset viewer.