Changeset 6767 for trunk/psLib/src/fits/psFitsImage.h
- Timestamp:
- Apr 4, 2006, 9:52:55 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/fits/psFitsImage.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fits/psFitsImage.h
r5511 r6767 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $10 * @date $Date: 200 5-11-14 22:18:30$9 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-04-04 19:52:42 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 46 46 psMetadata* header, ///< header items for the new HDU. Can be NULL. 47 47 const psImage* input, ///< the image to output 48 int depth ///< the number of z-planes of the FITS image data cube 48 int depth, ///< the number of z-planes of the FITS image data cube 49 const char* extname ///< FITS extension name 49 50 ); 50 51 51 /** Updates the FITS file image, given the desired region and z-plane. 52 /** Writes an image, given the desired region and z-plane. A new IMAGE HDU is 53 * appended to the end of the FITS file. 54 * 55 * @return bool TRUE is the write was successful, otherwise FALSE. 56 */ 57 bool psFitsInsertImage( 58 psFits* fits, ///< the psFits object 59 psMetadata* header, ///< header items for the new HDU. Can be NULL. 60 const psImage* input, ///< the image to output 61 int depth, ///< the number of z-planes of the FITS image data cube 62 const char* extname, ///< FITS extension name 63 bool after ///< if TRUE, inserts HDU after current HDU, otherwise before 64 ); 65 66 /** Updates the FITS file image, given the desired region and z-plane. a new 67 * IMAGE HDU is inserted before or after, depending on the AFTER parameter, 68 * the current HDU. 52 69 * 53 70 * @return bool TRUE is the write was successful, otherwise FALSE. … … 56 73 psFits* fits, ///< the psFits object 57 74 const psImage* input, ///< the image to output 58 psRegion region, ///< the region in the FITS image to write 75 int x0, ///< psImage's x-axis origin in FITS image coordinates 76 int y0, ///< psImage's y-axis origin in FITS image coordinates 59 77 int z ///< the z-planes of the FITS image data cube to write 60 78 );
Note:
See TracChangeset
for help on using the changeset viewer.
