Changeset 15933
- Timestamp:
- Dec 26, 2007, 4:09:56 PM (18 years ago)
- Location:
- trunk/ppImage/src
- Files:
-
- 4 edited
-
Makefile.am (modified) (2 diffs)
-
ppImage.h (modified) (2 diffs)
-
ppImageLoop.c (modified) (1 diff)
-
ppImageOptions.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/Makefile.am
r14000 r15933 27 27 ppImagePixelStats.c \ 28 28 ppImageMetadataStats.c \ 29 ppImageReplaceBackground.c \ 29 30 ppImageDefineFile.c \ 30 31 ppImageFileCheck.c \ … … 54 55 ppImagePixelStats.c \ 55 56 ppImageMetadataStats.c \ 57 ppImageReplaceBackground.c \ 56 58 ppImageDefineFile.c \ 57 59 ppImageFileCheck.c \ -
trunk/ppImage/src/ppImage.h
r14223 r15933 36 36 bool doAstromMosaic; // full-mosaic Astrometry 37 37 bool doStats; // call ppStats on the image 38 bool replaceMasked; // fill in masked values with background model 38 39 39 40 // output files requested … … 127 128 bool ppImageAddstar (pmConfig *config); 128 129 130 bool ppImageReplaceBackground (pmConfig *config, pmFPAview *view, ppImageOptions *options); 131 129 132 bool ppImageMosaicChip (pmConfig *config, const ppImageOptions *options, const pmFPAview *view, 130 133 const char *outFile, const char *inFile); -
trunk/ppImage/src/ppImageLoop.c
r15216 r15933 90 90 } 91 91 92 // replace the masked pixels with the background level 93 if (options->replaceMasked) { 94 if (!ppImageReplaceBackground (config, view, options)) 95 ESCAPE ("Unable to replace masked pixels with background level"); 96 } 97 92 98 // Close cells (XXX shouldn't pmFPAfileClose iterate down as needed?) 93 99 view->cell = -1; -
trunk/ppImage/src/ppImageOptions.c
r14507 r15933 272 272 options->fringeKeep = psMetadataLookupF32(NULL, recipe, "FRINGE.KEEP"); 273 273 274 options->replaceMasked = psMetadataLookupBool(NULL, recipe, "REPLACE.MASKED"); 275 274 276 return options; 275 277 }
Note:
See TracChangeset
for help on using the changeset viewer.
