diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 10:19:54 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 10:19:54 +0200 |
| commit | 6ee137becfa2c0b7e54465ac5cdaae42301abdb1 (patch) | |
| tree | 30fa3b0cb9f879ecf9a36b771a2185621b5294e7 | |
| parent | a3b91f12d247b4470f63546f15181789b03a2a58 (diff) | |
less carpy
| -rw-r--r-- | data/recursive_dataset.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/recursive_dataset.py b/data/recursive_dataset.py index 650678a..b5a4ed2 100644 --- a/data/recursive_dataset.py +++ b/data/recursive_dataset.py @@ -19,7 +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) + # print(A_path) while not os.path.exists(A_path): time.sleep(self.opt.poll_delay) A_img = Image.open(A_path).convert('RGB') |
