fjenett commited on
Commit
7168cc8
·
1 Parent(s): 390ad5b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ def detect_ellipses(img_path):
15
 
16
  ammed_size = 1200
17
 
18
- iheight, iwidth, _ = imgG.shape
19
  imax = max(iheight, iwidth)
20
  iscale = ammed_size / imax
21
  is_landscape = iwidth >= iheight
 
15
 
16
  ammed_size = 1200
17
 
18
+ iheight, iwidth = imgG.shape
19
  imax = max(iheight, iwidth)
20
  iscale = ammed_size / imax
21
  is_landscape = iwidth >= iheight