Changeset 5858 for trunk/ppImage/src/ppImage.c
- Timestamp:
- Dec 30, 2005, 7:05:28 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImage.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImage.c
r5857 r5858 5 5 ppData data; 6 6 ppConfig config; 7 pp Recipeoptions;7 ppOptions options; 8 8 9 9 psTimerStart("phase2"); 10 10 11 11 // Parse the configuration and arguments 12 pp ConfigLoad(&config, argc, argv);12 ppImageConfig (&config, argc, argv); 13 13 14 14 // Open the input image, output image, output mask 15 15 // Get camera configuration from header if not already defined 16 16 // Construct camera in preparation for reading 17 pp DataLoadMeta (&data, &config, argv);17 ppImageParseCamera (&data, &config, argv); 18 18 19 19 // Set various tasks (define optional operations) 20 pp RecipeInit (&options, &config)20 ppImageOptions (&data, &options, &config); 21 21 22 // Read in the input pixels 23 // Generate mask and weight frame 24 // Read in detrend pixels 25 ppDataLoadPixels (&data, &options, &config); 22 // open detrend images, load headers, optionally load pixels 23 ppImageParseDetrend (&data, &options, &config); 26 24 27 25 // Image Arithmetic Loop … … 29 27 30 28 // output options 31 ppImageOutput (&data, &options, &config);29 // ppImageOutput (&data, &options, &config); 32 30 33 31 exit (0);
Note:
See TracChangeset
for help on using the changeset viewer.
