You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
211 B
7 lines
211 B
4 years ago
|
|
||
|
import os
|
||
|
from IPython.display import Image
|
||
|
|
||
|
com = "python detect.py --weights yolov5s.pt --img 416 --conf 0.4 --source inference/images/"
|
||
|
os.system(com)
|
||
|
Image(filename='inference/output/zidane.jpg', width=600)
|