Dricz commited on
Commit
07456a8
·
verified ·
1 Parent(s): b7b81f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -33,13 +33,13 @@ def response2(image: gr.Image = None,image_size: gr.Slider = 640, conf_threshold
33
  text = " "
34
 
35
 
36
- conf = results.boxes.conf
37
- cls = results.boxes.cls
38
- xywh = int(results.boxes.xywh)
39
  # x = xywh[0]
40
  # y = xywh[1]
41
 
42
- text += f"Detected {cls} with confidence {conf} at \n"
43
 
44
  return render,text
45
 
 
33
  text = " "
34
 
35
 
36
+ conf = float(results.boxes.conf)
37
+ cls = int(results.boxes.cls)
38
+ # xywh = int(results.boxes.xywh)
39
  # x = xywh[0]
40
  # y = xywh[1]
41
 
42
+ text += f"Detected {name[cls]} with confidence {conf} at \n"
43
 
44
  return render,text
45