summaryrefslogtreecommitdiff
path: root/data/recursive_dataset.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-15 04:18:52 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-15 04:18:52 +0200
commit416ba77ed0a97f7604662e313000783a2b3354f5 (patch)
tree105e04d771b863516a1b102e2ae7724950e9adca /data/recursive_dataset.py
parent2fd5f6bee2a53f2df3e98c5b61f1ba9da85777d5 (diff)
testy
Diffstat (limited to 'data/recursive_dataset.py')
-rw-r--r--data/recursive_dataset.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/data/recursive_dataset.py b/data/recursive_dataset.py
index ecbc7df..f56b871 100644
--- a/data/recursive_dataset.py
+++ b/data/recursive_dataset.py
@@ -22,7 +22,6 @@ class RecursiveDataset(BaseDataset):
def __getitem__(self, index):
A_path = os.path.join(self.opt.render_dir, "frame_{:05d}.png".format(index))
while not os.path.exists(A_path):
- print(A_path)
time.sleep(0.01)
A_img = Image.open(A_path).convert('RGB')
A = self.transform(A_img)