diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-12 17:13:30 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-12 17:13:30 +0200 |
| commit | 065af87eb992945ef1a6d694fe3650139e8baedd (patch) | |
| tree | 1cfa8ce356b5fdaf899cafab324ab5fa2c00d97f | |
| parent | ef994e09872bcc3b4b34bd63d1e8302fff2bc0b2 (diff) | |
zeroes
| -rwxr-xr-x | build_dataset.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build_dataset.pl b/build_dataset.pl index d00140e..928747b 100755 --- a/build_dataset.pl +++ b/build_dataset.pl @@ -46,11 +46,11 @@ for ($i = 0; $i < $count; $i++) { } $src = $images_dir . $images[$i]; - $dst = $dir . sprintf("A/frame%03d.png", $i); + $dst = $dir . sprintf("A/frame%05d.png", $i); system("ln", "-s", $src, $dst); $src = $images_dir . $images[$i+1]; - $dst = $dir . sprintf("B/frame%03d.png", $i); + $dst = $dir . sprintf("B/frame%05d.png", $i); system("ln", "-s", $src, $dst); if (($i % 100) == 0) { |
