0xrushi commited on
Commit
3b187db
·
1 Parent(s): 1f37306

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -139,6 +139,11 @@ def get_imgs(base_image_path, style_reference_image_path):
139
  base_image = preprocess_image(base_image_path)
140
  style_reference_image = preprocess_image(style_reference_image_path)
141
  combination_image = tf.Variable(preprocess_image(base_image_path))
 
 
 
 
 
142
 
143
  iterations = 400
144
  for i in range(1, iterations + 1):
 
139
  base_image = preprocess_image(base_image_path)
140
  style_reference_image = preprocess_image(style_reference_image_path)
141
  combination_image = tf.Variable(preprocess_image(base_image_path))
142
+
143
+ # Dimensions of the generated picture.
144
+ width, height = base_image.size
145
+ img_nrows = 400
146
+ img_ncols = int(width * img_nrows / height)
147
 
148
  iterations = 400
149
  for i in range(1, iterations + 1):