-
Hi,
I want to get the bboxes frome Yolov9 with this code which works with Yolov8.
Here is thee code that I use for Yolov8:
```
from ultralytics import YOLO
model = YOLO('yolov8n.pt')
…
-
**YOLOv9** is better than any convolution or transformer based object detectors
- **Paper**: https://arxiv.org/abs/2402.13616
- **Code**: https://github.com/WongKinYiu/yolov9
![image](https://g…
-
First, thank you for the excellent paper and code release. I have some questions as I would like to understand your paper and code more deeply.
Section 5.4.2 of the paper conducts an ablation stu…
-
Hi,
for easy distributing of my application using yolov9 I would like a C++ onnx-compatible version of YoloV9, I found this repo : https://github.com/spacewalk01/yolov9-onnx-segmentation/ which prop…
-
### Search before asking
- [X] I have searched the YOLOv8 [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/ultralytics/ultralytics/discussions) and fou…
-
Is this YAML file (models/detect/yolov9.yaml) related to YOLOv9 M, S, or N?
-
## Describe the bug
In my custom data, when use data augmentation cause that the value of target is empty.
And I stop data augmentation, the train is normal, but the value of AP less than 0
ps: the…
-
`from ultralytics import YOLO
import cv2
model_path = r"C:/Users/10124/Desktop/yolov9/yolov9-main/runs/train/exp17/weights/best.pt"
model = YOLO(model_path)
cap = cv2.VideoCapture(video)
ret, f…
-
@WongKinYiu
I have tried to draw yolov9-c architecture based on .yaml file.
![yolov9-architecture](https://github.com/WongKinYiu/yolov9/assets/83331756/f9affc80-c3ea-4b91-a704-ecff84c8925e)
Can…
-
I have set everything for custom training the model and using this command to train the model (I am running this on my laptop):
`python train_dual.py --workers 8 --device 0 --batch 8 --data 'LP/dat…