# ultralytics-YOLO-DeepSort-ByteTrack-PyQt-GUI **Repository Path**: Analyst2020/ultralytics-YOLO-DeepSort-ByteTrack-PyQt-GUI ## Basic Information - **Project Name**: ultralytics-YOLO-DeepSort-ByteTrack-PyQt-GUI - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-05-04 - **Last Updated**: 2026-04-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ultralytics-YOLO-DeepSort/ByteTrack-PyQt-GUI a GUI application, which uses ultralytics YOLO for Object Detection/Tracking, Human Pose Estimation/Tracking from images, videos or camera. All python scripts performing detection, pose and segmentation using the YOLO model in ONNX. ![GUI](./data/ui.png) Supported AI tasks: - [x] Detection - [x] Pose Estimation - [x] Segmentation - [ ] OBB Supported Models: - [x] YOLO11 - [x] YOLO11-n - [x] YOLO11-s - [x] YOLO11-m - [x] YOLO11-l - [x] YOLO11-x - [x] YOLOv8 - [x] YOLOv8-n - [x] YOLOv8-s - [x] YOLOv8-m - [x] YOLOv8-l - [x] YOLOv8-x Supported Trackers: - [x] DeepSort - [x] ByteTrack Supported Input Sources: - [x] local files: images or videos - [x] Camera - [x] RTSP-Stream ## Install Install required packages with pip: ```shell pip install -r requirements.txt ``` or with conda: ```shell conda env create -f environment.yml # activate the conda environment conda activate yolo_gui ``` ## Download weights Download the model weights: ``````shell python download_weights.py `````` The model files are saved in the **weights/** folder. ## Run ```shell python main.py ```