Changeset 9996 for trunk/ppMerge/src/ppMerge.c
- Timestamp:
- Nov 14, 2006, 4:49:37 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ppMerge/src/ppMerge.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppMerge/src/ppMerge.c
r9463 r9996 14 14 #include "ppMergeCombine.h" 15 15 #include "ppMergeScaleZero.h" 16 #include "ppMergeMask.h" 16 17 17 18 //#include "ppMem.h" … … 45 46 } 46 47 47 // Measure the background in each image48 48 psImage *scale = NULL; // The scalings 49 49 psImage *zero = NULL; // The zeros 50 ppMergeScaleZero(&scale, &zero, data, options, config);51 50 52 // Do the combination and write 53 ppMergeCombine(scale, zero, data, options, config); 51 if (options->mask) { 52 // Generate a mask 53 ppMergeMask(data, options, config); 54 } else { 55 // Measure the background in each image 56 ppMergeScaleZero(&scale, &zero, data, options, config); 57 58 // Do the combination and write 59 ppMergeCombine(scale, zero, data, options, config); 60 } 54 61 55 62 // Output the statistics
Note:
See TracChangeset
for help on using the changeset viewer.
