cheng-hust commited on
Commit
f29c1af
·
verified ·
1 Parent(s): c23b3d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -68,7 +68,7 @@ model = Model(confg='./configs/rtdetr/rtdetr_r101vd_6x_coco.yml',ckpt="./checkpo
68
  #img = Image.open('./a.jpg').convert('RGB').resize((640,640))
69
 
70
 
71
- def detect(img):
72
  #print(img) #ndarray
73
  img = Image.fromarray(img).resize((640,640))
74
  t_img = transformer(img).unsqueeze(0)#.unsqueeze(0) #[1,1,640,640]
@@ -77,7 +77,7 @@ def detect(img):
77
  labels, boxes, scores=model(t_img,size)
78
  #img_path = Path('./a.jpg')
79
  draw = ImageDraw.Draw(img)
80
- thrh = 0.1
81
 
82
  for i in range(t_img.shape[0]):
83
 
@@ -93,6 +93,6 @@ def detect(img):
93
  #save_path = Path('./output') / img_path.name
94
  return img
95
 
96
- interface = gr.Interface(fn=detect,inputs="image",outputs="image",title="rt-cope detect")
97
 
98
  interface.launch()
 
68
  #img = Image.open('./a.jpg').convert('RGB').resize((640,640))
69
 
70
 
71
+ def detect(img,thr):
72
  #print(img) #ndarray
73
  img = Image.fromarray(img).resize((640,640))
74
  t_img = transformer(img).unsqueeze(0)#.unsqueeze(0) #[1,1,640,640]
 
77
  labels, boxes, scores=model(t_img,size)
78
  #img_path = Path('./a.jpg')
79
  draw = ImageDraw.Draw(img)
80
+ thrh = thr
81
 
82
  for i in range(t_img.shape[0]):
83
 
 
93
  #save_path = Path('./output') / img_path.name
94
  return img
95
 
96
+ interface = gr.Interface(fn=detect,inputs=["image",gr.Slider(label=“thr”, value=0.2, maximum=1, minimum=0)],outputs="image",title="rt-cope detect")
97
 
98
  interface.launch()