Changeset 13901 for trunk/ppImage/src/ppImageMosaic.c
- Timestamp:
- Jun 19, 2007, 4:49:08 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImageMosaic.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImageMosaic.c
r12818 r13901 5 5 #include "ppImage.h" 6 6 7 bool ppImageMosaicChip(pmConfig *config, const pmFPAview *view, char *outFile, char *inFile) 7 bool ppImageMosaicChip(pmConfig *config, const ppImageOptions *options, const pmFPAview *view, 8 const char *outFile, const char *inFile) 8 9 { 9 10 bool status; // Status of MD lookup … … 31 32 in->name, out->name, in->xBin, in->yBin, out->xBin, out->yBin); 32 33 33 // XXX mosaic the chip, making a deep copy. this has the side effect of making the 34 // XXX mosaic the chip, making a deep copy. this has the side effect of making the 34 35 // output image products pure trimmed images, but also increases the memory footprint. 35 status = pmChipMosaic(outChip, inChip, true );36 status = pmChipMosaic(outChip, inChip, true, options->blankMask); 36 37 return status; 37 38 } 38 39 39 bool ppImageMosaicFPA (pmConfig *config, char *outFile, char *inFile) 40 bool ppImageMosaicFPA (pmConfig *config, const ppImageOptions *options, const char *outFile, 41 const char *inFile) 40 42 { 41 43 bool status; // Status of MD lookup … … 72 74 psTrace ("pmFPAMosaic", 5, "mosaic fpa %s to %s (xbin,ybin: %d,%d to %d,%d)\n", 73 75 in->name, out->name, in->xBin, in->yBin, out->xBin, out->yBin); 74 return pmFPAMosaic(out->fpa, in->fpa, false );76 return pmFPAMosaic(out->fpa, in->fpa, false, options->blankMask); 75 77 }
Note:
See TracChangeset
for help on using the changeset viewer.
