Changeset 21366 for trunk/ppStack/src/ppStackArguments.c
- Timestamp:
- Feb 5, 2009, 5:03:33 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/ppStack/src/ppStackArguments.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppStack/src/ppStackArguments.c
r21199 r21366 24 24 "\tIMAGE(STR): Image filename\n" 25 25 "\tMASK(STR): Mask filename\n" 26 "\t WEIGHT(STR): Weightmap filename\n"26 "\tVARIANCE(STR): Variance map filename\n" 27 27 "\tPSF(STR): PSF filename\n" 28 28 "\tSOURCES(STR): Sources filename\n" … … 151 151 psMetadataAddStr(arguments, PS_LIST_TAIL, "-mask-poor", 0, "Mask value to give poor pixels", NULL); 152 152 psMetadataAddF32(arguments, PS_LIST_TAIL, "-threshold-mask", 0, "Threshold for mask deconvolution", NAN); 153 psMetadataAddF32(arguments, PS_LIST_TAIL, "-poor-frac", 0, "Fraction of weightfor poor pixels", NAN);153 psMetadataAddF32(arguments, PS_LIST_TAIL, "-poor-frac", 0, "Fraction of variance for poor pixels", NAN); 154 154 psMetadataAddF32(arguments, PS_LIST_TAIL, "-deconv-limit", 0, "Maximum deconvolution fraction limit", NAN); 155 155 psMetadataAddF32(arguments, PS_LIST_TAIL, "-image-rej", 0, … … 183 183 psMetadataAddStr(arguments, PS_LIST_TAIL, "-temp-image", 0, "Suffix for temporary images", NULL); 184 184 psMetadataAddStr(arguments, PS_LIST_TAIL, "-temp-mask", 0, "Suffix for temporary masks", NULL); 185 psMetadataAddStr(arguments, PS_LIST_TAIL, "-temp- weight", 0, "Suffix for temporary weightmaps", NULL);185 psMetadataAddStr(arguments, PS_LIST_TAIL, "-temp-variance", 0, "Suffix for temporary variance maps", NULL); 186 186 psMetadataAddBool(arguments, PS_LIST_TAIL, "-temp-delete", 0, 187 187 "Delete temporary files on completion?", false); … … 283 283 VALUE_ARG_RECIPE_INT("-renorm-num", "RENORM.NUM", S32, 0); 284 284 VALUE_ARG_RECIPE_FLOAT("-renorm-width", "RENORM.WIDTH", F32); 285 valueArgRecipeStr(arguments, recipe, "-renorm-mean", "RENORM.MEAN", recipe);285 valueArgRecipeStr(arguments, recipe, "-renorm-mean", "RENORM.MEAN", recipe); 286 286 valueArgRecipeStr(arguments, recipe, "-renorm-stdev", "RENORM.STDEV", recipe); 287 287 288 valueArgRecipeStr(arguments, recipe, "-temp-image", "TEMP.IMAGE", recipe);289 valueArgRecipeStr(arguments, recipe, "-temp-mask", "TEMP.MASK", recipe);290 valueArgRecipeStr(arguments, recipe, "-temp- weight", "TEMP.WEIGHT", recipe);288 valueArgRecipeStr(arguments, recipe, "-temp-image", "TEMP.IMAGE", recipe); 289 valueArgRecipeStr(arguments, recipe, "-temp-mask", "TEMP.MASK", recipe); 290 valueArgRecipeStr(arguments, recipe, "-temp-variance", "TEMP.VARIANCE", recipe); 291 291 292 292 if (psMetadataLookupBool(NULL, arguments, "-temp-delete") ||
Note:
See TracChangeset
for help on using the changeset viewer.
