Help for this page

Select Code to Download


  1. or download this
    my(@conf);
    if(defined($opt{config_file})){
    ...
    else{
       @conf = @default_conf;
       }
    
  2. or download this
    $ cat 1174639.conf 
    @conf = (
    ...
       {'step' => 4,  'blur_fwhm' => 2,  'iterations' => 10},
       {'step' => 2,  'blur_fwhm' => 1,  'iterations' => 10},
       );
    
  3. or download this
    $ cat 1174639.pl
    use strict; use warnings; use feature 'say';
    ...
    my @conf;
    eval( $buf );
    say Dumper \@conf;
    
  4. or download this
    $ perl 1174639.pl
    $VAR1 = [
    ...
                'iterations' => 10
              }
            ];