summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-21 03:24:26 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-21 03:24:26 +0200
commit91346a79e91002c15a3a7939ad12e4e52763c2b1 (patch)
treedddc01c63561f615d793761909e9e9f2972ad183 /data
parente5ec83cf2bcffee392da274fc91ea71074bf96ff (diff)
un rato
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 d7f1e4a..9b515d3 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):
gevent.sleep(self.opt.poll_delay)
A_img = Image.open(A_path).convert('RGB')