Changeset 16108
- Timestamp:
- Jan 17, 2008, 10:19:34 AM (19 years ago)
- Location:
- trunk/psLib/src/fits
- Files:
-
- 2 edited
-
psFitsFloat.c (modified) (2 diffs)
-
psFitsFloat.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fits/psFitsFloat.c
r15630 r16108 67 67 68 68 69 psImage *psFitsFloatImage Write(const psImage *image, psFitsFloat type)69 psImage *psFitsFloatImageToDisk(const psImage *image, psFitsFloat type) 70 70 { 71 71 PS_ASSERT_IMAGE_NON_NULL(image, NULL); … … 95 95 96 96 97 psImage *psFitsFloatImage Read(psImage *out, const psImage *in, psFitsFloat type)97 psImage *psFitsFloatImageFromDisk(psImage *out, const psImage *in, psFitsFloat type) 98 98 { 99 99 PS_ASSERT_IMAGE_NON_NULL(in, NULL); -
trunk/psLib/src/fits/psFitsFloat.h
r15630 r16108 12 12 } psFitsFloat; 13 13 14 /// Convert an image to custom floating-point in preparation for writing as FITS15 psImage *psFitsFloatImage Write(const psImage *image, ///< Image to convert14 /// Convert an image to custom floating-point (the disk representation) in preparation for writing as FITS 15 psImage *psFitsFloatImageToDisk(const psImage *image, ///< Image to convert 16 16 psFitsFloat type ///< Custom floating point type 17 17 ); 18 18 19 /// Convert the custom floating-point image to afloating-point image20 psImage *psFitsFloatImage Read(psImage *out, ///< Output image, or NULL21 const psImage *in, ///< Image to convert22 psFitsFloat type ///< Custom floating point type19 /// Convert the custom floating-point image (the disk representation) to a normal floating-point image 20 psImage *psFitsFloatImageFromDisk(psImage *out, ///< Output image, or NULL 21 const psImage *in, ///< Image to convert 22 psFitsFloat type ///< Custom floating point type 23 23 ); 24 24
Note:
See TracChangeset
for help on using the changeset viewer.
