Erice commited on
Commit
805225b
1 Parent(s): 87b16d5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -9,10 +9,10 @@ import math
9
 
10
 
11
  def greet(input_img, input_model_name, input_tile_mode):
12
- if input_img.size[0] * input_img.size[1] > 256 * 256:
13
- y = int(math.sqrt(256*256/input_img.size[0]*input_img.size[1]))
14
- x = int(input_img.size[0]/input_img.size[1]*y)
15
- input_img = ImageOps.fit(input_img, (x, y))
16
  input_img = np.array(input_img)
17
  if input_model_name not in model_cache:
18
  t1 = time.time()
 
9
 
10
 
11
  def greet(input_img, input_model_name, input_tile_mode):
12
+ # if input_img.size[0] * input_img.size[1] > 256 * 256:
13
+ # y = int(math.sqrt(256*256/input_img.size[0]*input_img.size[1]))
14
+ # x = int(input_img.size[0]/input_img.size[1]*y)
15
+ # input_img = ImageOps.fit(input_img, (x, y))
16
  input_img = np.array(input_img)
17
  if input_model_name not in model_cache:
18
  t1 = time.time()