Skip to content
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

Apollo-Note/docs/perception/obstacles_lidar_4_hmtrack.md ComputeAssociateMatrixhas issue for advice #9

Open
lark-ying opened this issue Aug 22, 2020 · 0 comments

Comments

@lark-ying
Copy link

Thank you very much for your summary and share.I would like to ask two questions in the Apollo/ Percetion/LIdar module:
The following source code, the path for "modules/perception/obstacle/lidar/tracker/hm_tracker/track_object_distance. cc" , when lidar track ComputeAssociateMatrixhas five factors, including: location_distance,direction_distance,bbox_size_distance,point_num_distance,histogram_distance. I want to ask whether there is any selection basis for selecting the 5 parameters for weighting. There are 5 default weights s_location_distance_weight_, s_direction_distance_weight_, s_bbox_size_distance_weight_, s_point_num_distance_weight_, s_histogram_distance_weight_ are where the selection is given**?
float TrackObjectDistance::ComputeDistance( ObjectTrackPtr track, const Eigen::VectorXf& track_predict, const std::shared_ptr<TrackedObject>& new_object) { // Compute distance for given trakc & object ....... float result_distance = s_location_distance_weight_ * location_distance + s_direction_distance_weight_ * direction_distance + s_bbox_size_distance_weight_ * bbox_size_distance + s_point_num_distance_weight_ * point_num_distance + s_histogram_distance_weight_ * histogram_distance; return result_distance; }

In the source code, association_(i, j) <= connected_threshold==4. What factors are considered in the selection of this connected_threshold=4?

Looking forward to your reply and best wishes!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant