umautobots / vod-converter

Convert between visual object detection datasets
MIT License
307 stars 93 forks source link

Kitti_tracking to Voc conversion inquiry #10

Closed benn94 closed 7 years ago

benn94 commented 7 years ago

How does each class in Kitti tracking are converted to Voc?

'Car', 'Van', 'Truck', 'Pedestrian', 'Person_sitting', 'Cyclist', 'Tram', 'Misc' and 'DontCare'

krosaen commented 7 years ago

The current implementation specifies that it expects to output to lower case labels which is used by the conversion function. If the label is not found in the expected labels of the voc egestor, it will pass it through. If you wish to have the output labels in a different format, you could modify the keys in the expected labels dict to be whatever you choose.

benn94 commented 7 years ago

Thank you. I am closing this issue.