Closed yougeyxt closed 2 years ago
Thanks for your interest in our work. Here are my answers to your questions.
map_process
method. I will change line 403 to map_lanes[0], map_crosswalks[0] = self.map_process(ego, timestep, type=1)
. Thank you for pointing it out.Hope my answers are helpful to you!
Thank you for the answers, and they are very helpful!
Hello, a kind reminder that line 31 in the test_utils.py
file may also need to be changed to map_lanes[0], map_crosswalks[0] = self.map_process(ego, timestep, type=1)
. Thanks again for the great work.
Thank you for the correction.
Hi authors, thanks for the interesting and well-organized work! I have some questions regarding the
map_process
function in thedata_process.py
file:agent_type
equals to 2 (i.e., pedestrian), where agent_type defined byagent_type = int(traj[-1][-1]) if type is None else type
. For the ego vehicle (i.e., the AV), theagent_type
will equal 2 since the last element oftraj
for AV is vehicle height (which equals 2.33 meters) rather than vehicle type. Is this designed purposely so that the map_process of AV is different from other non-pedestrian (agent_type != 2
)? Or should the line 403 bemap_lanes[0], map_crosswalks[0] = self.map_process(ego, timestep, type=1)
?vectorized_map
will be different. Could you please provide some intuition about why we need to scale the lane? I have some difficulties understanding this step, please correct me if I misunderstand it.Thank you!