IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 4, 2006, 12:48:16 PM (20 years ago)
Author:
Paul Price
Message:

Fixing typo. addnormexp is now addnormalizedexp.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/detrend_norm_exp.pl

    r9234 r9237  
    105105open my $list2File, '>' . $list2Name;
    106106foreach my $file (@$files) {
    107     print $list1File File::Spec-->rel2abs( $file->{b1_uri}, $ipprc->workdir() ) . "\n";
    108     print $list2File File::Spec-->rel2abs( $file->{b2_uri}, $ipprc->workdir() ) . "\n";
     107    print $list1File File::Spec->rel2abs( $file->{b1_uri}, $ipprc->workdir() ) . "\n";
     108    print $list2File File::Spec->rel2abs( $file->{b2_uri}, $ipprc->workdir() ) . "\n";
    109109    push @means, $file->{bg};
    110110    push @stdevs, $file->{bg_stdev};
     
    137137$jpeg2Name = File::Spec->abs2rel( $jpeg2Name, $ipprc->workdir() );
    138138unless ($no_update) {
    139     my $command = "$dettool -addnormexp -det_id $det_id -iteration $iter " .
     139    my $command = "$dettool -addnormalizedexp -det_id $det_id -iteration $iter " .
    140140        "-recip " . RECIPE1() . "," . RECIPE2() . " -b1_uri $jpeg1Name -b2_uri $jpeg2Name " .
    141141        "-bg $bg -bg_stdev $bg_stdev -bg_mean_stdev $bg_mean_stdev"; # Command to run
    142142    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
    143143        run(command => $command, verbose => 1);
    144     die "Unable to perform dettool -addnormexp: $error_code\n" if not $success;
     144    die "Unable to perform dettool -addnormalizedexp: $error_code\n" if not $success;
    145145
    146146    unlink $list1Name;
Note: See TracChangeset for help on using the changeset viewer.