remotewith commited on
Commit
29fa556
·
verified ·
1 Parent(s): a7acbbd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ def show_preds_image(image_path):
12
  results = outputs[0]. cpu().numpy()
13
  for i, det in enumerate(results.boxes.xyxy):
14
  cv2. rectangle(image,(int(det[0]), int(det[1])), (int(det[2]), int(det[3])),
15
- thickness=4 , color=[255,0,0]
16
  )
17
  return cv2. cvtColor (image, cv2.COLOR_BGR2RGB)
18
 
 
12
  results = outputs[0]. cpu().numpy()
13
  for i, det in enumerate(results.boxes.xyxy):
14
  cv2. rectangle(image,(int(det[0]), int(det[1])), (int(det[2]), int(det[3])),
15
+ thickness=6 , color=[0,0,255]
16
  )
17
  return cv2. cvtColor (image, cv2.COLOR_BGR2RGB)
18