Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/cnyvfang/YOLOv5-GUI

🎉Qt-GUI implementation of the YOLOv5 algorithm (ver.6 and ver.5). 🎉YOLOv5算法(ver.6及ver.5)的Qt-GUI实现
https://github.com/cnyvfang/YOLOv5-GUI

Last synced: 12 days ago
JSON representation

🎉Qt-GUI implementation of the YOLOv5 algorithm (ver.6 and ver.5). 🎉YOLOv5算法(ver.6及ver.5)的Qt-GUI实现

Lists

README

        

# YOLOv5-GUI
🎉YOLOv5算法(ver.6及ver.5)的Qt-GUI实现🎉Qt-GUI implementation of the YOLOv5 algorithm (ver.6 and ver.5).

基于YOLOv5的v5版本和v6版本及Javacr大佬的UI逻辑进行编写


提供深色浅色两个UI。


Provides dark and light UI.

![image](https://github.com/cnyvfang/YOLOv5-GUI/blob/master/demo.png)

## Installation and use

1.Fetching projects from git

```bash
git clone https://github.com/cnyvfang/YOLOv5-GUI.git
```

2.Switching the operating directory to the project directory

```bash
cd [PyQt5-YOLOv5_V5/PyQt5-YOLOv5_V6]
```

3.Installation environment

```bash
pip install -r requirements.txt
```

4.Launching applications

```bash
python run.py
```

## Attention

GUI默认为深色模式,你也可以通过在run.py的import中修改main_ui_dark为main_ui_light来让程序调整为浅色模式。


The GUI defaults to dark mode, you can also make the program adjust to light mode by changing main_ui_dark to main_ui_light in the import of run.py.

## Reference

ultralytics/yolov5


Javacr/PyQt5-YOLOv5