The problem of perception direction to predict the velocity of objects #5330
-
When using the fusion method of LiDAR and Radar to conduct autoware real vehicle test, we found that for stationary objects, when the vehicle accelerates or decelerates, there will be a predicted speed error of about 3km/h. How can we further optimize this problem? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I guess your problem separate into two problem.
The output from the radars has latency especially for velocity estimation.
The node of For this, I give two other possible solutions. Second, I recommend if you use directory radar objects for detection output, then you make new node such as I think these solution is up to your system, so I suggest you consider about these solution and choose one or adapt one of these for your system. |
Beta Was this translation helpful? Give feedback.
I guess your problem separate into two problem.
The output from the radars has latency especially for velocity estimation.
It is difficult to handle because we don't know how long the latency of radars, which is often defined by devices specification, but one possible solution is that you use delay compensation in tracking layer.
https://github.com/autowarefoundation/autoware.universe/blob/8e0d40b8510ff69c4653842433dd4d4b284beb79/perception/autoware_multi_object_tracker/config/multi_object_tracker_node.param.yaml#L15
The node of
radar_tracks_msgs_converter
estimate absolute velocity of objects by using radar doppler velocity and ego velocity.…