IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 26, 2004, 2:57:34 PM (22 years ago)
Author:
desonia
Message:

converted native C types to ps Types, where practical.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/image/psImageIO.h

    r1442 r2204  
    1010 *  @author Robert DeSonia, MHPCC
    1111 *
    12  *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-08-10 01:05:53 $
     12 *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-10-27 00:57:31 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1717#ifndef PS_IMAGEIO_H
    1818#define PS_IMAGEIO_H
    19 
    20 #include <stdbool.h>
    2119
    2220#include "psImage.h"
     
    3432    /**< the output psImage to recycle, or NULL if new psImage desired */
    3533
    36     int col0,
     34    psS32 col0,
    3735    /**< the column index of the origin to start reading */
    3836
    39     int row0,
     37    psS32 row0,
    4038    /**< the row index of the origin to start reading */
    4139
    42     int numCols,
     40    psS32 numCols,
    4341    /**< the number of desired columns to read */
    4442
    45     int numRows,
     43    psS32 numRows,
    4644    /**< the number of desired rows to read */
    4745
    48     int z,
     46    psS32 z,
    4947    /**< the z index to read if file is organized as a 3D image cube. */
    5048
     
    5452        */
    5553
    56     int extnum,
     54    psS32 extnum,
    5755    /**< the image extension to read (0=PHU, 1=first extension, etc.)  This is
    5856        *   only used if extname is NULL
     
    6563/** Read an image or subimage from a FITS file specified by a filename.
    6664 *
    67  *  return bool         TRUE is successful, otherwise FALSE.
     65 *  return psBool         TRUE is successful, otherwise FALSE.
    6866 */
    69 bool psImageWriteSection(
     67psBool psImageWriteSection(
    7068    psImage* input,
    7169    /**< the psImage to write */
    7270
    73     int col0,
     71    psS32 col0,
    7472    /**< the column index of the origin to start writing */
    7573
    76     int row0,
     74    psS32 row0,
    7775    /**< the row index of the origin to start writing */
    7876
    79     int z,
     77    psS32 z,
    8078    /**< the z index to start writing */
    8179
     
    8583    */
    8684
    87     int extnum,
     85    psS32 extnum,
    8886    /**< the image extension to write (0=PHU, 1=first extension, etc.)  This is
    8987    *   only used if extname is NULL.
Note: See TracChangeset for help on using the changeset viewer.