Changeset 29886
- Timestamp:
- Nov 30, 2010, 3:30:00 PM (15 years ago)
- Location:
- tags/ipp-20101029/pstamp
- Files:
-
- 8 edited
-
. (modified) (1 prop)
-
scripts/pstamp_checkdependent.pl (modified) (1 prop)
-
scripts/pstamp_job_run.pl (modified) (1 diff)
-
scripts/pstamp_request_file (modified) (1 prop)
-
src/ppstampArguments.c (modified) (2 diffs)
-
src/ppstampMakeStamp.c (modified) (1 diff)
-
src/ppstampOptions.c (modified) (1 diff)
-
src/ppstampOptions.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20101029/pstamp
- Property svn:mergeinfo set to
-
tags/ipp-20101029/pstamp/scripts/pstamp_checkdependent.pl
- Property svn:mergeinfo deleted
-
tags/ipp-20101029/pstamp/scripts/pstamp_job_run.pl
r29380 r29886 119 119 $command .= " -dbserver $dbserver" if $dbserver; 120 120 $command .= " -stage $params->{stage}" if $params->{stage}; 121 $command .= " -no_censor_masked" unless $nan_masked; 121 122 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 122 123 run(command => $command, verbose => $verbose); -
tags/ipp-20101029/pstamp/scripts/pstamp_request_file
- Property svn:mergeinfo deleted
-
tags/ipp-20101029/pstamp/src/ppstampArguments.c
r29379 r29886 25 25 fprintf(stderr, " [-mask mk_image] : mask image\n"); 26 26 fprintf(stderr, " [-variance var_image] : variance image\n"); 27 fprintf(stderr, " [-no_censor_masked] : do not set masked pixels to NAN\n"); 27 28 fprintf(stderr, "\n"); 28 29 … … 95 96 } 96 97 98 if ((argnum = psArgumentGet(argc, argv, "-no_censor_masked"))) { 99 psArgumentRemove(argnum, &argc, argv); 100 options->censorMasked = false; 101 } 97 102 98 103 // finally the output file -
tags/ipp-20101029/pstamp/src/ppstampMakeStamp.c
r29388 r29886 327 327 } 328 328 329 if ( !setMaskedToNAN(config, outReadout->image, outReadout->mask, outReadout->variance)) {329 if (options->censorMasked && !setMaskedToNAN(config, outReadout->image, outReadout->mask, outReadout->variance)) { 330 330 psError(PS_ERR_UNKNOWN, false, "failed to create postage stamp mask image\n"); 331 331 status = false; -
tags/ipp-20101029/pstamp/src/ppstampOptions.c
r16132 r29886 28 28 options->roip.dDEC = 0; 29 29 options->chipName = NULL; 30 options->censorMasked = true; 30 31 31 32 return options; -
tags/ipp-20101029/pstamp/src/ppstampOptions.h
r29379 r29886 15 15 // 16 16 psRegion roi; // roi in chip coordinates 17 bool censorMasked; 17 18 18 19 } ppstampOptions;
Note:
See TracChangeset
for help on using the changeset viewer.
