Sriram Elango commited on
Commit
d0f588e
1 Parent(s): 32484e9
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,7 +23,7 @@ def detect(inp):
23
  #g = (size / max(inp.size)) #gain
24
  #im = im.resize((int(x * g) for x in im.size), Image.ANTIALIAS) # resize
25
  results = model(inp,size=640) # inference
26
- print("Results" + str(results))
27
  results.render() # updates results.imgs with boxes and labels
28
  return Image.fromarray(results.imgs[0])
29
 
 
23
  #g = (size / max(inp.size)) #gain
24
  #im = im.resize((int(x * g) for x in im.size), Image.ANTIALIAS) # resize
25
  results = model(inp,size=640) # inference
26
+ print(results)
27
  results.render() # updates results.imgs with boxes and labels
28
  return Image.fromarray(results.imgs[0])
29