目标检测
SJY_ZY
顺其自然:是做到竭尽所能后的不强求,而非两手一摊的不作为。
展开
-
conda更换中科大源
conda config --remove-key channels conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/clou原创 2022-01-22 15:26:46 · 2163 阅读 · 0 评论 -
yolov5——检测各种格式
# 检测摄像头 python detect.py --weights runs/train/exp_yolov5s/weights/best.pt --source 0 # webcam # 检测图片文件 python detect.py --weights runs/train/exp_yolov5s/weights/best.pt --source file.jpg # image # 检测视频文件 python detect.py --weights runs/train/.原创 2022-01-22 15:04:05 · 2722 阅读 · 0 评论