datasets/detect/ #12639
Replies: 14 comments 38 replies
-
Hello,
as far as I know the yolo format is : (class, center-x, center-y, width, height) and the annotation above has more than 5 points, when training the model it seems fine but what are the excessive points represent? does it affect model perfomance? |
Beta Was this translation helpful? Give feedback.
-
I'd like to contact you via linkedin or mail @ultralytics team. |
Beta Was this translation helpful? Give feedback.
-
Hey there! path: path\to\root\directory #Path to the root directory of dataset #Classes |
Beta Was this translation helpful? Give feedback.
-
Hi, I am using the below code to cnvert coco-text json annaotation to YOLO format. It gives output "COCO data converted successfully. But the folder is empty. from ultralytics.data.converter import convert_coco |
Beta Was this translation helpful? Give feedback.
-
Hi Glenn,
Thanks for taking the time out to provide those tips. You're right about
bridging the gap between the format of RT-DETR outputs and Byte-Track's
expected inputs. If I understood correctly, RT-DETR has a different bbox
coordinate system than YOLO(which has cxcywh) right?
Need to be sure about this before proceeding to integrate the two.
Thanks,
Kind regards,
Subramanya
…On Fri, May 31, 2024 at 3:57 PM Glenn Jocher ***@***.***> wrote:
Hello!
It's great to hear that your model training on the custom dataset was
successful and that you're now looking to integrate object tracking. While
the integration of RT-DETR with ByteTrack or BoT-SORT isn't directly
documented like YOLO models, the process should be conceptually similar.
You would need to ensure that the output format of RT-DETR (detections
including bounding boxes and confidence scores) is compatible with the
input requirements of the tracking algorithms. Typically, this involves
ensuring that the detection model outputs are formatted correctly for the
tracker to process (e.g., converting to the appropriate coordinate system
and ensuring confidence scores are passed).
If RT-DETR outputs are compatible, you can then proceed by feeding these
detections into ByteTrack or BoT-SORT as you would with detections from a
YOLO model. You might need to adjust some parameters or settings in the
tracking configuration to optimize performance for your specific use case.
If you encounter any specific issues or have more detailed questions as
you proceed, feel free to reach out!
Best of luck with your project, and looking forward to hearing about your
progress with integrating detection and tracking!
—
Reply to this email directly, view it on GitHub
<#12639 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKWCYDT4LZQEZZ25OALL2U3ZFB6UBAVCNFSM6AAAAABHTL2AXWVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TMMJZGEZDC>
.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
--
Subramanya Bhat
5/16, University Road
University of Delhi
Delhi-110 007
Phone:27662141
|
Beta Was this translation helpful? Give feedback.
-
Hello. I'm new to YOLO, so I need help with a project because I don't know how to select the classes I want, such as vehicle classes. I used CLI and defined it as follows: |
Beta Was this translation helpful? Give feedback.
-
Hello, I am looking to prepare a dataset for multi-label detection, where each object in an image could belong to multiple classes. I understand that the .txt file for labels have the following format for each object in an image: cls_1 xc_1 yc_1 w_1 h_1
cls_2 xc_1 yc_1 w_1 h_1
cls_3 xc_2 yc_2 w_2 h_2
cls_4 xc_2 yc_2 w_2 h_2
cls_3 xc_3 yc_3 w_3 h_3
cls_4 xc_3 yc_3 w_3 h_3 |
Beta Was this translation helpful? Give feedback.
-
Hello, |
Beta Was this translation helpful? Give feedback.
-
WARNING 这个问题该如何解决? |
Beta Was this translation helpful? Give feedback.
-
Hello, my label and image files are stored according to the requirements, but they are still not recognized, and the following is an error message WARNING |
Beta Was this translation helpful? Give feedback.
-
Hello, can you please fix the broken images on this page? Can't see the label file example. |
Beta Was this translation helpful? Give feedback.
-
Hi team, I am a little bit confused with the dataset folder structure. |
Beta Was this translation helpful? Give feedback.
-
Hello Team, |
Beta Was this translation helpful? Give feedback.
-
Hello,
yolo directory has yolo annotations (*.txt files), and it's inside respective train, val and test directory. |
Beta Was this translation helpful? Give feedback.
-
datasets/detect/
Navigate through supported dataset formats, methods to utilize them and how to add your own datasets. Get insights on porting or converting label formats.
https://docs.ultralytics.com/datasets/detect/
Beta Was this translation helpful? Give feedback.
All reactions