IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3970


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

reorganized the image functions into more files.

Location:
trunk/psLib/src
Files:
5 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);
  • trunk/psLib/src/dataManip/psVectorFFT.c

    r3476 r3970  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-03-22 21:52:49 $
     7 *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-05-19 02:09:39 $
    99 *
    1010 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2121#include "psMemory.h"
    2222#include "psLogMsg.h"
    23 #include "psImageExtraction.h"
    2423
    2524#include "psDataManipErrors.h"
  • trunk/psLib/src/fft/psVectorFFT.c

    r3476 r3970  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-03-22 21:52:49 $
     7 *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-05-19 02:09:39 $
    99 *
    1010 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2121#include "psMemory.h"
    2222#include "psLogMsg.h"
    23 #include "psImageExtraction.h"
    2423
    2524#include "psDataManipErrors.h"
  • trunk/psLib/src/fits/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);
  • trunk/psLib/src/pslib_strict.h

    r3682 r3970  
    99*  @author Eric Van Alst, MHPCC
    1010*
    11 *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2005-04-07 20:27:41 $
     11*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2005-05-19 02:09:39 $
    1313*
    1414*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    9292/// @{
    9393#include "psImage.h"
    94 #include "psImageExtraction.h"
    95 #include "psImageManip.h"
     94#include "psImagePixelExtract.h"
     95#include "psImageStructManip.h"
     96#include "psImageGeomManip.h"
     97#include "psImagePixelManip.h"
    9698#include "psImageConvolve.h"
    9799
Note: See TracChangeset for help on using the changeset viewer.