Mercurial > cortex
view thesis/comp.pl @ 572:202c6d19acad
add index page as part of aurellem redesign.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sun, 08 Mar 2015 22:08:17 -0700 |
parents | f14fa9e5b67f |
children |
line wrap: on
line source
1 #!/usr/bin/env perl3 use List::Flatten;5 $target = shift(@ARGV);7 $frames = shift(@ARGV);9 @numbers = split(/,/, $frames);10 @images = map {sprintf("$target/%07d.png", $_)} @numbers;13 $output = $target.".png";15 @imagemagick_command = flat("montage", @images, "-geometry", "+2+2", $output);17 print "@imagemagick_command\n";19 system(@imagemagick_command);