Changeset 2204 for trunk/psLib/src/image/psImageIO.h
- Timestamp:
- Oct 26, 2004, 2:57:34 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/image/psImageIO.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/image/psImageIO.h
r1442 r2204 10 10 * @author Robert DeSonia, MHPCC 11 11 * 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 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 17 17 #ifndef PS_IMAGEIO_H 18 18 #define PS_IMAGEIO_H 19 20 #include <stdbool.h>21 19 22 20 #include "psImage.h" … … 34 32 /**< the output psImage to recycle, or NULL if new psImage desired */ 35 33 36 intcol0,34 psS32 col0, 37 35 /**< the column index of the origin to start reading */ 38 36 39 introw0,37 psS32 row0, 40 38 /**< the row index of the origin to start reading */ 41 39 42 intnumCols,40 psS32 numCols, 43 41 /**< the number of desired columns to read */ 44 42 45 intnumRows,43 psS32 numRows, 46 44 /**< the number of desired rows to read */ 47 45 48 intz,46 psS32 z, 49 47 /**< the z index to read if file is organized as a 3D image cube. */ 50 48 … … 54 52 */ 55 53 56 intextnum,54 psS32 extnum, 57 55 /**< the image extension to read (0=PHU, 1=first extension, etc.) This is 58 56 * only used if extname is NULL … … 65 63 /** Read an image or subimage from a FITS file specified by a filename. 66 64 * 67 * return bool TRUE is successful, otherwise FALSE.65 * return psBool TRUE is successful, otherwise FALSE. 68 66 */ 69 bool psImageWriteSection(67 psBool psImageWriteSection( 70 68 psImage* input, 71 69 /**< the psImage to write */ 72 70 73 intcol0,71 psS32 col0, 74 72 /**< the column index of the origin to start writing */ 75 73 76 introw0,74 psS32 row0, 77 75 /**< the row index of the origin to start writing */ 78 76 79 intz,77 psS32 z, 80 78 /**< the z index to start writing */ 81 79 … … 85 83 */ 86 84 87 intextnum,85 psS32 extnum, 88 86 /**< the image extension to write (0=PHU, 1=first extension, etc.) This is 89 87 * only used if extname is NULL.
Note:
See TracChangeset
for help on using the changeset viewer.
