diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-17 21:22:26 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-17 21:22:26 +0200 |
| commit | 872dcf1d511b384b8cbc4076ee696b23055d70af (patch) | |
| tree | 6e5d85d5c0a98579b5d6e76c1ecc8478a19d5c09 /build_dataset.pl | |
| parent | 0a3ef697eb37936449dc3768b4e9bac1f903cd76 (diff) | |
scriptz
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) { |
