-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
[Feature] Evaluating tracking accuracy based on KITTI data #1671
[Feature] Evaluating tracking accuracy based on KITTI data #1671
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great!
Please add readme about evaluation tool and startup tool.
tf::Quaternion q(detected_objects.objects[i].pose.orientation.x, detected_objects.objects[i].pose.orientation.y, | ||
detected_objects.objects[i].pose.orientation.z, detected_objects.objects[i].pose.orientation.w); | ||
double roll, pitch, yaw; | ||
tf::Matrix3x3(q).getRPY(roll, pitch, yaw); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can abbreviate the code by using tf::getYaw in "tf/transform_datatypes.h".
http://docs.ros.org/melodic/api/tf/html/c++/transform__datatypes_8h.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fixed here by using tf::getYaw. Plus, added benchmark description in README.md
Status
DEVELOPMENT
Description
This PR enables imm_ukf_pda_track to dump result file for evaluation based on KITTI data. autowarefoundation/autoware_ai#266
Please check this repo about how to evaluate tracking result.
This PR modify tiny part in imm_ukf_pda in order to fit above evaluation scripts.