Changeset 5976 for trunk/ppImage/src/ppImage.c
- Timestamp:
- Jan 13, 2006, 5:14:07 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImage.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImage.c
r5860 r5976 1 # include "ppImage.h"1 #include "ppImage.h" 2 2 3 int main (int argc, char **argv) { 3 int main(int argc, char **argv) 4 { 4 5 5 6 ppData data; … … 7 8 ppOptions options; 8 9 9 psTimerStart( "phase2");10 psTimerStart(TIMERNAME); 10 11 11 12 // Parse the configuration and arguments 12 ppImageConfig (&config, argc, argv);13 ppImageConfig(&config, argc, argv); 13 14 14 15 // Open the input image, output image, output mask 15 16 // Get camera configuration from header if not already defined 16 17 // Construct camera in preparation for reading 17 ppImageParseCamera (&data, &config);18 ppImageParseCamera(&data, &config); 18 19 19 20 // Set various tasks (define optional operations) 20 ppImageOptions (&data, &options, &config);21 ppImageOptions(&data, &options, &config); 21 22 22 23 // open detrend images, load headers, optionally load pixels 23 ppImageParseDetrend (&data, &options, &config);24 ppImageParseDetrend(&data, &options, &config); 24 25 25 26 // Image Arithmetic Loop 26 ppImageLoop (&data, &options, &config);27 ppImageLoop(&data, &options, &config); 27 28 28 29 // output options 29 // ppImageOutput (&data, &options, &config);30 // ppImageOutput(&data, &options, &config); 30 31 31 exit (0);32 exit(EXIT_SUCCESS); 32 33 }
Note:
See TracChangeset
for help on using the changeset viewer.
