向streamlit移植YoloV5
python3.8 windowns10 pycharm
- 将下载的zip包进行解压
- 安装 streamlit
pip install streamlit
- cd 到 /yolo/下运行
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
- cmd 到main.py文件夹下
- 运行命令
streamlit run main.py
- webFunction/indexFunction.py 文件中34,42行设置为自己的文件路径即可
- 若想使用自己的权重文件 webFunction/indexFunction.py 文件中20行,添加如下属性即可 weightPath='weights/你的权重文件'(请将权重文件放入weights文件夹下)
- 本项目是不存储检测后的文件和待检测文件,在检测完毕后会自动删除。 若想存储,修改webFunction/indexFunction.py中 对以下内容注释即可 remove_file(vs_name) remove_dir(os.path.dirname(de_dir))
- 若想对输出路径进行更改 webFunction/indexFunction.py 文件中20行,添加如下属性即可 savePath='你想存储的位置'(默认为:runs/detect)