diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-11 02:57:48 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-11 02:57:48 +0100 |
| commit | 59a7d975f7eecc454acefb5eb7c2ab8cd8480331 (patch) | |
| tree | b0c2dbe5e300263a9d7450022430feb7fbf00f2f | |
| parent | f1148af6396803e149304bbba74a5a4a8b4dc477 (diff) | |
frame
| -rw-r--r-- | cli/app/search/live.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py index ba45e3d..5097229 100644 --- a/cli/app/search/live.py +++ b/cli/app/search/live.py @@ -391,7 +391,7 @@ class Listener: print("Step {}. Generation time: {:.2f}s".format(i, time.time() - gen_time)) out_img = vs.data2pil(gen_images[0]) if out_img is not None: - out_img.save(os.path.join(path_out, "image_{:5d}.png".format(i)), format='png') + out_img.save(os.path.join(path_out, "frame_{:5d}.png".format(i)), format='png') img_to_send = out_img.resize((256, 256), Image.BICUBIC) meta = { 'i': i, |
