https://github.com/mcw1217/Triple_YOLOv8
This project uses three types of images as inputs RGB, Depth, and thermal images to perform object detection with YOLOv8.
https://github.com/mcw1217/Triple_YOLOv8
Last synced: about 1 month ago
JSON representation
This project uses three types of images as inputs RGB, Depth, and thermal images to perform object detection with YOLOv8.
- Host: GitHub
- URL: https://github.com/mcw1217/Triple_YOLOv8
- Owner: mcw1217
- Created: 2024-07-16T06:38:54.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-07-23T09:51:28.000Z (9 months ago)
- Last Synced: 2024-07-23T11:53:27.331Z (9 months ago)
- Language: Python
- Size: 25.1 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
- awesome-yolo-object-detection - mcw1217/Triple_YOLOv8
README
# Triple YOLOv8
- This model uses three types of images as inputs RGB, Depth, and thermal images to perform object detection.
- The model has been modified to accept three inputs. Therefore, to achieve good performance, further modifications to the model are necessary. The current configuration of the model is shown in Figure 1 below.# Prepare Dataset
- Please organize the dataset folder according to the following image.
- Please put RGB images in the RGB folder, Depth images in the D folder, and thermal images in the Thermo folder.
- In the label folder, include only one bounding box labeling for the RGB images. The images and labels in all folders should have the same names.
- Example: RGB - test.jpg / D - test.jpg / Thermo - test.jpg / labels - test.txt
# Model Architecture
- The Architecture of the model is just a basic one copied from the backbone. For better performance, it is recommended to modify the model architecture.
