Changeset 13748 for trunk/ippScripts/scripts/detrend_norm_apply.pl
- Timestamp:
- Jun 10, 2007, 10:13:50 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/detrend_norm_apply.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_norm_apply.pl
r13732 r13748 70 70 71 71 72 use constant RECIPE => 'PPIMAGE_N'; # Recipe to use with ppImage 72 my $RECIPE_PPIMAGE = 'PPIMAGE_N'; # Recipe to use with ppImage 73 my $RECIPE_PPSTATS = 'CHIPSTATS'; # Recipe to use with ppStats 73 74 74 75 # Look for programs we need … … 93 94 my $stats = PS::IPP::Metadata::Stats->new(); # Stats parser 94 95 unless ($no_op) { 95 my $command = "$ppImage -file $input $outputRoot -norm $value -stat $statsName -recipe PPIMAGE " . RECIPE(); # Command to run 96 my $command = "$ppImage -file $input $outputRoot"; 97 $command .= " -norm $value -stats $statsName"; 98 $command .= " -recipe PPIMAGE $RECIPE_PPIMAGE"; 99 $command .= " -recipe PPSTATS $RECIPE_PPSTATS"; 96 100 $command .= ' -isfringe' if lc($det_type) eq 'fringe'; 101 97 102 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 98 103 run(command => $command, verbose => 1);
Note:
See TracChangeset
for help on using the changeset viewer.
