Size: 625
Comment:
|
← Revision 10 as of 2016-07-23 07:14:01 ⇥
Size: 707
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 6: | Line 6: |
'''IMAGEFILES/''' stores images that will be used in SPC. These images are created by [[process_img]], which is different for every flight mission. | '''IMAGEFILES/''' stores images that will be used in SPC. These images are created by [[process_fits]], which is different for every flight mission. |
Line 8: | Line 8: |
The key data stored in '''IMAGEFILES/''' is a scaled signed integer (2 bytes or 16 bits), with the exclusion of values less than 0. Acceptable values are from 0 to 32767. | The data stored in each image file contained in the '''IMAGEFILES/''' directory is a scaled unsigned integer (2 bytes or 16 bits), with the exclusion of values less than 0. Acceptable values are from 0 to 32767. |
Line 10: | Line 10: |
[[process_img]] takes the original images' data (float or int) and calculates the maximum value. Then it scales the data to spread from 0 to 32767 to maximize the accuracy of the stored data. | If the source is a real (or 32-bit float) value [[process_fits]] takes the original images' data float and calculates the maximum value. Then it scales the data to spread from 0 to 32767 to maximize the accuracy of the stored data. |
IMAGEFILES
Description
IMAGEFILES/ stores images that will be used in SPC. These images are created by process_fits, which is different for every flight mission.
The data stored in each image file contained in the IMAGEFILES/ directory is a scaled unsigned integer (2 bytes or 16 bits), with the exclusion of values less than 0. Acceptable values are from 0 to 32767.
If the source is a real (or 32-bit float) value process_fits takes the original images' data float and calculates the maximum value. Then it scales the data to spread from 0 to 32767 to maximize the accuracy of the stored data.
(Compiled by KD)