-
Notifications
You must be signed in to change notification settings - Fork 262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TODOs] About deal with tracklets #33
Comments
I forked the project and added support for tracklets using parseTrackletXML. For the tracklet data message I used the Marker message type, and a MarkerArray to contain all the markers for a given frame. This seems to work for my own purposes, though it may need to be revised a bit if you want to use the Markers in rviz as-is (I'm not using rviz so didn't test there). Also, some of the tracklet data isn't transferred to the Markers, and some of the fields I used for data may not fit their typical use in other applications. |
@thully That's really nice. We should definitely consider merging this into the main codebase. I'm only wondering if it could perhaps be based off pykitti like the rest of the code is? There is a tracklet class in pykitti that might be useful here. This would also avoid using |
The pykitti tracklet class seems to be designed to read a different set of tracking data, not the tracklet xml that parseTrackletXML does. |
by using parseTrackletXML.py in https://github.com/thully/kitti2bag and above code, you can record the bounding boxes into a bag file. |
Hello, maintainers. @tomas789 @emreay- @jnitsch .
I'm interested in contribution to develop "deal with tracklets" as a feature request.
I'm going to make a Pull-Request for that.
So, I check the Kitti Tracklet file and I think it is good to use this util from here
We can use the module as parser like following codes.
After this parsing progress, what kind of the type we need for
kitti2bag
?How about just making a custom topic message for
item
oftracklet_labels.xml
?If you have a good other way, please recommend it.
The text was updated successfully, but these errors were encountered: