summaryrefslogtreecommitdiff
path: root/renderer.py
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-12-29 22:32:28 +0200
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-12-29 22:32:28 +0200
commit447b6c6c921f912e5323af2ed18160d63931533f (patch)
tree0f6709a0f70e555c91df9dc7e30a8f4763b70ee8 /renderer.py
parent44bcbe8825cec9245373e7e807a615d4441b6287 (diff)
Great changes to the README, featuring full showcase of video outputs.
Main scripts have seen a couple QOS changes as well Changes to be committed: modified: .gitignore modified: README.md modified: neuralart.py modified: renderer.py modified: stylize.sh
Diffstat (limited to 'renderer.py')
-rw-r--r--renderer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/renderer.py b/renderer.py
index 0803430..f02722a 100644
--- a/renderer.py
+++ b/renderer.py
@@ -4,7 +4,7 @@
import numpy as np
-# TODO: will need some added functionality there for *.npy
+# TODO: will need some added functionality there for per-instance *.npy
image_array = np.load("images.npy")
### progress bar
@@ -45,7 +45,7 @@ if len(sys.argv) == 1:
exit()
if sys.argv[1] == "--fix":
- for index in range(0, 32):
+ for index in range(0, 64):
### some artifacts may have slipped
### because of the thread pool
name = 'Output/neural_art_{:04d}.png'.format(index + 1)