IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

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

reorganized the image functions into more files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataIO/psFits.c

    r3851 r3970  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-05-05 21:25:47 $
     9 *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-05-19 02:09:39 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1919#include "psError.h"
    2020#include "psFileUtilsErrors.h"
    21 #include "psImageExtraction.h"
     21#include "psImageStructManip.h"
    2222#include "psMemory.h"
    2323#include "psString.h"
     
    10051005    if (dx != numCols || dy != numRows) {
    10061006        // the input image needs to be subsetted
    1007         subset = psImageSubset((psImage*)input,0,0,dx+1,dy+1);
     1007        subset = psImageSubset((psImage*)input,(psRegion) {
     1008                                   0,0,dx+1,dy+1
     1009                               }
     1010                              );
    10081011    } else {
    10091012        subset = psMemIncrRefCounter((psImage*)input);
Note: See TracChangeset for help on using the changeset viewer.