ymy-k / DPText-DETR

[AAAI'23 Oral] DPText-DETR: Towards Better Scene Text Detection with Dynamic Points in Transformer
Other
170 stars 22 forks source link

How to evaluate custom datasets? #20

Open willpat1213 opened 1 year ago

willpat1213 commented 1 year ago

There is no polygon label information in my dataset, only bbox in the form of xyxy. What should I do if I want to evaluate the effect of the trained model on my dataset? In other words, do I just need to convert my dataset format to the provided zip format? Is there any code that can do this?

ymy-k commented 1 year ago

you can refer to the provided GT. If the instances in your dataset are oriented, only using four points of a box is ok. Note the points in GT are in clockwise or anti-clockwise order.

lerndeep commented 7 months ago

@ymy-k @chaimi2013 have you convert to 16 points? How to prepare data for training, data example: x1,y1,x2,y2,x3,y3,x4,y4,text x1,y1,x2,y2,x3,y3,x4,y4,text x1,y1,x2,y2,x3,y3,x4,y4,text Each annotation text file contains bounding box coordinates with corresponding text.