-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Feature Description
Add a CLI to the tracklet-parser package to allow users to parse tracklet XML files and convert them to KITTI format directly from the terminal. The CLI should use argparse for argument parsing and provide options for specifying the input XML file, frame list, and output directory.
Use Case
As some users might want to automate the steps to create label files, it would be handy to execute the tracklet parser via the command line with arguments.
Proposed Solution
- Add a
cli.pymodule to handle CLI logic. - Allow users to run the package via
python -m tracklet_parseror a CLI entry point. - Provide the following arguments:
--labels: Path to the tracklet XML file (required).--frames: Path to the frame list file (optional).--outputs: Directory to save KITTI format files (default:output).
Additional Context
Example usage:
python -m tracklet_parser --labels path/to/tracklet_labels.xml --frames path/to/frame_list.txt --output path/to/output_dirReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request