summaryrefslogtreecommitdiff
path: root/data/recursive_dataset.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-04-19 02:20:58 +0200
committerJules Laplace <julescarbon@gmail.com>2018-04-19 02:20:58 +0200
commit871eff4b0142f616a190e4d465f4db40d0d9e97b (patch)
treeb5e93390fadeee02082dbca0622050fc0b54fd92 /data/recursive_dataset.py
parent3b55c1e130d0466e164a8344a9fb66e504ad8bbc (diff)
y
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 e42f1f7..32b0018 100644
--- a/data/recursive_dataset.py
+++ b/data/recursive_dataset.py
@@ -21,7 +21,6 @@ class RecursiveDataset(BaseDataset):
def __getitem__(self, index):
A_path = self.opt.results_dir + self.opt.name + "/exp:" + self.opt.experiment + "/frame_{:05d}.png".format(index)
- print('next image: ' + A_path)
while not os.path.exists(A_path):
time.sleep(0.1)
A_img = Image.open(A_path).convert('RGB')