Changeset 40389 for trunk/pstamp/src
- Timestamp:
- Apr 12, 2018, 9:10:37 AM (8 years ago)
- Location:
- trunk/pstamp/src
- Files:
-
- 4 edited
-
ppstampArguments.c (modified) (2 diffs)
-
ppstampMakeStamp.c (modified) (1 diff)
-
ppstampOptions.h (modified) (1 diff)
-
pstamp.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pstamp/src/ppstampArguments.c
r35893 r40389 31 31 fprintf(stderr, " [-write_cmf] : create an output cmf with the sources overlapping the stamp\n"); 32 32 fprintf(stderr, " [-wholefile] : ignore the region of interest and process the entire input image\n"); 33 fprintf(stderr, " [-centeroffchip] : allow center to be off chip boundary and include any pixels in ROI (testing) \n"); 33 34 // fprintf(stderr, " [-no_censor_masked] : do not set masked pixels to NAN\n"); 34 35 fprintf(stderr, "\n"); … … 66 67 *pOptions = options; 67 68 69 if ((argnum = psArgumentGet(argc, argv, "-centeroffchip"))) { 70 psArgumentRemove(argnum, &argc, argv); 71 options->centeroffchip = true; 72 } 73 68 74 if ((argnum = psArgumentGet(argc, argv, "-wholefile"))) { 69 75 psArgumentRemove(argnum, &argc, argv); -
trunk/pstamp/src/ppstampMakeStamp.c
r36060 r40389 592 592 } 593 593 594 if (onChip) { 594 //MEH add hack for ROI not to include center on chip 595 if (onChip || options->centeroffchip ) { 595 596 if (options->roip.celestialRange) { 596 597 findBoundingBox(options, input->fpa, chip, center); -
trunk/pstamp/src/ppstampOptions.h
r35893 r40389 8 8 // input arguments 9 9 pstampROI roip; 10 bool centeroffchip; 10 11 bool wholeFile; 11 12 psString chipName; -
trunk/pstamp/src/pstamp.h
r36811 r40389 43 43 #define PSTAMP_SELECT_UNCONV 2048 44 44 #define PSTAMP_RESTORE_BACKGROUND 4096 45 // unused 8192 45 // MEH -- previously unused 8192 46 #define PSTAMP_MULTI_OVERLAP_IMAGE 8192 46 47 #define PSTAMP_USE_IMFILE_ID 16384 47 48
Note:
See TracChangeset
for help on using the changeset viewer.
