├── .gitignore ├── README.md ├── config.py ├── custom ├── graphicsView.py ├── listWidgetItems.py ├── listWidgets.py ├── mediaplayer.py ├── stackedWidget.py ├── tableWidget.py ├── treeView.py └── warn.mp3 ├── flags.py ├── font └── simhei.ttf ├── icons ├── branch-close.png ├── branch-open.png ├── mask.png ├── video.png ├── 右旋转.png ├── 图片.png ├── 左旋转.png ├── 摄像头.png └── 识别.png ├── main.py ├── maskimg └── demo.png ├── model_data ├── coco_classes.txt ├── voc_classes.txt └── yolo_anchors.txt ├── nets ├── mobilenet_v1.py ├── mobilenet_v2.py ├── mobilenet_v3.py ├── yolo4.py └── yolo_training.py ├── requirements.txt ├── utils ├── dataloader.py └── utils.py └── yolo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/config.py -------------------------------------------------------------------------------- /custom/graphicsView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/custom/graphicsView.py -------------------------------------------------------------------------------- /custom/listWidgetItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/custom/listWidgetItems.py -------------------------------------------------------------------------------- /custom/listWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/custom/listWidgets.py -------------------------------------------------------------------------------- /custom/mediaplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/custom/mediaplayer.py -------------------------------------------------------------------------------- /custom/stackedWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/custom/stackedWidget.py -------------------------------------------------------------------------------- /custom/tableWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/custom/tableWidget.py -------------------------------------------------------------------------------- /custom/treeView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/custom/treeView.py -------------------------------------------------------------------------------- /custom/warn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/custom/warn.mp3 -------------------------------------------------------------------------------- /flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/flags.py -------------------------------------------------------------------------------- /font/simhei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/font/simhei.ttf -------------------------------------------------------------------------------- /icons/branch-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/icons/branch-close.png -------------------------------------------------------------------------------- /icons/branch-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/icons/branch-open.png -------------------------------------------------------------------------------- /icons/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/icons/mask.png -------------------------------------------------------------------------------- /icons/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/icons/video.png -------------------------------------------------------------------------------- /icons/右旋转.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/icons/右旋转.png -------------------------------------------------------------------------------- /icons/图片.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/icons/图片.png -------------------------------------------------------------------------------- /icons/左旋转.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/icons/左旋转.png -------------------------------------------------------------------------------- /icons/摄像头.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/icons/摄像头.png -------------------------------------------------------------------------------- /icons/识别.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/icons/识别.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/main.py -------------------------------------------------------------------------------- /maskimg/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/maskimg/demo.png -------------------------------------------------------------------------------- /model_data/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/model_data/coco_classes.txt -------------------------------------------------------------------------------- /model_data/voc_classes.txt: -------------------------------------------------------------------------------- 1 | face 2 | face_mask -------------------------------------------------------------------------------- /model_data/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/model_data/yolo_anchors.txt -------------------------------------------------------------------------------- /nets/mobilenet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/nets/mobilenet_v1.py -------------------------------------------------------------------------------- /nets/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/nets/mobilenet_v2.py -------------------------------------------------------------------------------- /nets/mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/nets/mobilenet_v3.py -------------------------------------------------------------------------------- /nets/yolo4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/nets/yolo4.py -------------------------------------------------------------------------------- /nets/yolo_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/nets/yolo_training.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/utils/dataloader.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/utils/utils.py -------------------------------------------------------------------------------- /yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egrt/YOLO_PyQt5/HEAD/yolo.py --------------------------------------------------------------------------------