diff options
| author | jules@lens <julescarbon@gmail.com> | 2018-06-17 21:58:13 +0200 |
|---|---|---|
| committer | jules@lens <julescarbon@gmail.com> | 2018-06-17 21:58:13 +0200 |
| commit | 2b228ed309415418d54e284a8ac430e5161a6535 (patch) | |
| tree | fb699bdf92d4c35f3e97c851cf058ad740c59275 /build_dataset.pl | |
| parent | c42f642806087b44d0b656e356e858e1d5b73238 (diff) | |
| parent | 872dcf1d511b384b8cbc4076ee696b23055d70af (diff) | |
merge
Diffstat (limited to 'build_dataset.pl')
| -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 2780d77..f007038 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%05d.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%05d.png", $i); + $dst = $dir . sprintf("B/frame_%05d.png", $i); system("ln", "-s", $src, $dst); if (($i % 100) == 0) { |
