- Timestamp:
- Jun 25, 2009, 2:00:56 PM (17 years ago)
- Location:
- branches/eam_branches/20090522
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ippScripts/scripts/magic_process.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/20090522
- Property svn:mergeinfo changed
-
branches/eam_branches/20090522/ippScripts/scripts/magic_process.pl
r24174 r24557 142 142 $command .= " --detect --image $image --mask $mask --weight $weight -k $template"; 143 143 144 # set threshold to 4 sigma 145 $command .= ' -t 4'; 146 147 # add -S 144 # XXX: get all of these parameters from a recipe 145 146 # set threshold to 4 sigma 147 $command .= ' -t 2.3'; 148 # $command .= ' -t 4'; 149 150 # set Minimum percent visible required between pixels clusters in a valid streak [0.0 - 1.0] 151 # default is 0.2 152 $command .= ' -P 0.2'; 153 154 #$command .= ' -t 4' . ' -P 0.25'; 155 156 # add -S "Number of pixels to shift for determining maximum differences in mean images default:8" 148 157 $command .= ' -S'; 158 159 # add 3 x 3 binning 160 $command .= ' -b 3'; 149 161 150 162 # create the list of inputs used at this stage. At higher levels the … … 349 361 my $node = shift; 350 362 351 my $image; # Name of template to return 352 my $path_base; # Base name for name 353 if (defined $node->{warp_path_base} and $node->{warp_path_base} ne "NULL") { 354 $path_base = $node->{warp_path_base}; 355 $image = "PSWARP.OUTPUT"; 356 } elsif (defined $node->{stack_path_base} and $node->{stack_path_base} ne "NULL") { 357 $path_base = $node->{stack_path_base}; 358 $image = "PPSTACK.OUTPUT"; 359 } else { 360 return undef; 361 } 363 my $path_base = $node->{diff_path_base}; # Base name for name 364 my $image = $node->{inverse} ? "PPSUB.INPUT.CONV" : "PPSUB.REF.CONV"; # File rule of interest 362 365 363 366 $image = $ipprc->file_resolve($ipprc->filename($image, $path_base));
Note:
See TracChangeset
for help on using the changeset viewer.
