lucasjinreal / kitti-ssd

Train your own data using SSD in a more clear and simple way(not include source code)
102 stars 44 forks source link

labels format ? #10

Open alaaodeh95 opened 6 years ago

alaaodeh95 commented 6 years ago

Ok i have everything set , but i didnt get the label format meaning so i want to train my data on only one class , so i assume i should give it index 0 so the format for all of the labels are class_index xmin ymin xmax ymax 0 xmin ymin xmax ymax

what is xmin ymin ,xmam ,ymax ,, i am really confused

Update 1: ok they are the object boundaries in the image .. so is there any tool can help me with this boundaries coordinations, because if i need 7000 label i need 4 days to determine the boundaries !

hammadullah125 commented 6 years ago

Hello @alaaodeh95. How did you manage to create the labels?

lucasjinreal commented 6 years ago

Hi guys

what is xmin ymin ,xmam ,ymax ,, i am really confused

This is box coordinates with origin in left bottom corner. with left bottom point and right top point you can define a rectangle. This is normal in detection label format.

Ram-Godavarthi commented 4 years ago

If I have multiple objects in single image. Can i create label sfile like this: class_index xmin ymin xmax ymax

class_index xmin ymin xmax ymax

class_index xmin ymin xmax ymax

class_index xmin ymin xmax ymax

is it okay to do it like this??

Should I change something in any scripts.

Please answer this

Thank you