summaryrefslogtreecommitdiff
path: root/data/recursive_dataset.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-21 04:04:33 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-21 04:04:33 +0200
commit18d8a48cc60b86972d1637ff0535a702eb7d90fd (patch)
tree016d92f428f531319e4891ba0c697aecd8550d98 /data/recursive_dataset.py
parent6df653a1e0926fc487f7946ac1fc952ae7126c2a (diff)
un rato
Diffstat (limited to 'data/recursive_dataset.py')
-rw-r--r--data/recursive_dataset.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/data/recursive_dataset.py b/data/recursive_dataset.py
index 1d78877..1d5207b 100644
--- a/data/recursive_dataset.py
+++ b/data/recursive_dataset.py
@@ -19,9 +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):
- print("geevent sleep? {}".format(self.opt.poll_delay))
time.sleep(self.opt.poll_delay)
A_img = Image.open(A_path).convert('RGB')
A = self.transform(A_img)