holtvogt / tracklet_parser

A parser for tracklet labels in KITTI Raw Format 1.0 created by the Computer Vision Annotation Tool (CVAT).
MIT License
4 stars 0 forks source link

Add argument parser for script automation #1

Open holtvogt opened 2 years ago

holtvogt commented 2 years ago

Describe the feature Adding an argument parser to its initial functionality.

Motivation As some might want to automate the steps to create label files, It'd be handy to be able to execute the tracklet parser via command line with arguments. E.g.

python parser.py --labels <tracklet_labels.xml> --frames <frame_list.txt> --out <output_dir>
AJAY31797 commented 7 months ago

Hi,

Thanks for the tool.

As I saw in the git library of the tracklet_parser, these is no file named parser.py.

image

Is it the file named tracklet_parser.py in the "https://github.com/holtvogt/tracklet_parser/tree/develop/tracklet_parser" directory which is to be used to run it from the command line?

Best Regards, Ajay

holtvogt commented 7 months ago

It is not implemented yet, thus there is indeed no file named parser.py. It was an idea I wanted to capture when I worked on it during my bachelor thesis to simplify the parsing process. I haven't working on it since. It should basically add the ArgumentParser so that the TrackletParser can be used from CLI. But as I will be fixing #4 , I might implement it straight away :D

AJAY31797 commented 7 months ago

Thanks for the response @holtvogt.