Changeset 29388
- Timestamp:
- Oct 13, 2010, 11:14:15 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
ippconfig/gpc1/camera.config (modified) (1 diff)
-
psModules/src/extras/Makefile.am (modified) (2 diffs)
-
psModules/src/psmodules.h (modified) (1 diff)
-
pstamp/src/ppstampMakeStamp.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippconfig/gpc1/camera.config
r28089 r29388 160 160 NPIX_MAX S32 1455690816 161 161 NPIX_INTERCHIP S32 103794483 162 163 # The set of maskbits that should not be set to NAN in "released" images 164 # This value is equal to CONV.POOR | STARCORE | SPIKE | SUSPECT 165 MASK.NO.CENSOR U32 0x5280 166 -
trunk/psModules/src/extras/Makefile.am
r29004 r29388 10 10 pmVisual.c \ 11 11 pmVisualUtils.c \ 12 ippStages.c 12 ippStages.c \ 13 pmCensor.c 13 14 14 15 pkginclude_HEADERS = \ … … 20 21 pmVisualUtils.h \ 21 22 ippDiffMode.h \ 22 ippStages.h 23 ippStages.h \ 24 pmCensor.h 23 25 24 26 CLEANFILES = *~ -
trunk/psModules/src/psmodules.h
r29004 r29388 13 13 #include <ippStages.h> 14 14 #include <ippDiffMode.h> 15 #include <pmCensor.h> 15 16 16 17 // XXX the following headers define constructs needed by the elements below -
trunk/pstamp/src/ppstampMakeStamp.c
r29379 r29388 679 679 static bool setMaskedToNAN(pmConfig *config, psImage *image, psImage *mask, psImage *variance) 680 680 { 681 #ifdef notdef 681 682 bool status; 682 683 psMetadata *masks = psMetadataLookupMetadata(&status, config->recipes, "MASKS"); … … 724 725 } 725 726 } 726 fprintf(stderr, "excised %ld masked pixels\n", numExcised); 727 #endif 728 729 long numCensored; 730 if (!pmCensorMasked(config, image, mask, variance, &numCensored)) { 731 psError(PS_ERR_UNKNOWN, false, "Failed to censor masked pixels.\n"); 732 return false; 733 } 734 735 // XXX: this shouldn't be a fprintf 736 fprintf(stderr, "Censored %ld masked pixels\n", numCensored); 727 737 728 738 return true;
Note:
See TracChangeset
for help on using the changeset viewer.
