diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 03:05:55 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 03:05:55 +0200 |
| commit | 2730b9661442cccda5f8462589dfa6821f23db27 (patch) | |
| tree | e049370847a2b4fb27ad630758ec889be6b42647 /data/recursive_dataset.py | |
| parent | cbee92430093fe776889fd4cbface6fe7288466b (diff) | |
augment paths
Diffstat (limited to 'data/recursive_dataset.py')
| -rw-r--r-- | data/recursive_dataset.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/recursive_dataset.py b/data/recursive_dataset.py index 1d5207b..650678a 100644 --- a/data/recursive_dataset.py +++ b/data/recursive_dataset.py @@ -19,6 +19,7 @@ class RecursiveDataset(BaseDataset): def __getitem__(self, index): A_path = os.path.join(self.opt.render_dir, "frame_{:05d}.png".format(index)) + print(A_path) while not os.path.exists(A_path): time.sleep(self.opt.poll_delay) A_img = Image.open(A_path).convert('RGB') |
