Skip to content
Snippets Groups Projects
Select Git revision
  • 2b0fb732d74ec4ff29f885ae7b0596e9a559b6d6
  • master default protected
  • optical_flow+meanshift
  • 12-kmeans-and-variance-method
  • optical_flow+kmeans
  • optical_flow+seqKmeans
  • 10-implement-the-ridwan-algorithm
  • 8-mean-shift-algorithm
  • 6-mean-and-variance-method
  • clean
10 results

gitmodules

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    runall.pl 274 B
    #!/usr/bin/env perl
    
    use strict;
    use rob_misc;
    my $d = $ARGV[0] // '/tmp/';
    foreach my $f (`ls $d/c_log-*.dat`) 
    {
        chomp $f;
        my $x = slurp($f);
        #print $x;
        my $args = ($x=~/(--M_1.*)/)[0];
        print "ARGS $args\n";
        `tbse $args > tbse.out`;
        <STDIN>;
    }