Sudipta Nayak
commited on
Commit
·
d693649
1
Parent(s):
e0c2ed1
BB thickness increased
Browse files- app/detect.py +1 -1
app/detect.py
CHANGED
@@ -126,7 +126,7 @@ def detect(save_img=False):
|
|
126 |
|
127 |
if save_img or view_img: # Add bbox to image
|
128 |
label = f'{names[int(cls)]} {conf:.2f}'
|
129 |
-
plot_one_box(xyxy, im0, label=label, color=colors[int(cls)], line_thickness=
|
130 |
|
131 |
# Print time (inference + NMS)
|
132 |
print(f'{s}Done. ({(1E3 * (t2 - t1)):.1f}ms) Inference, ({(1E3 * (t3 - t2)):.1f}ms) NMS')
|
|
|
126 |
|
127 |
if save_img or view_img: # Add bbox to image
|
128 |
label = f'{names[int(cls)]} {conf:.2f}'
|
129 |
+
plot_one_box(xyxy, im0, label=label, color=colors[int(cls)], line_thickness=2)
|
130 |
|
131 |
# Print time (inference + NMS)
|
132 |
print(f'{s}Done. ({(1E3 * (t2 - t1)):.1f}ms) Inference, ({(1E3 * (t3 - t2)):.1f}ms) NMS')
|