summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-07 03:05:55 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-07 03:05:55 +0200
commit2730b9661442cccda5f8462589dfa6821f23db27 (patch)
treee049370847a2b4fb27ad630758ec889be6b42647 /data
parentcbee92430093fe776889fd4cbface6fe7288466b (diff)
augment paths
Diffstat (limited to 'data')
-rw-r--r--data/recursive_dataset.py1
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')