You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Act with the assumption that you are being sent a list of AgentState objects and you need to use the object fields to keep track of them for your task
18
+
# Further act on the assumption that we will decide the id's of the pedestrians by assuming that 2 pedestrians are the same pedestrian if a
19
+
# previously stored AgentState pose and dimensions overlap with a newly passed in AgentState
20
+
21
+
# Act on the assumption that the AgentState objects are all in reference to the start frame of the vehicle
22
+
23
+
# some helper functions in this class, LostAgent.py, and IdTracker.py have been created to try to help you out with your task.
24
+
25
+
# Assume that the output returned from this function will be a dictionary of AgentState objects with the key corresponding to their id
26
+
pass
27
+
18
28
def__convert_to_start_frame(self):
19
29
"""Converts a list of AgentState agents from ouster Lidar frame of
20
30
reference (which is in reference to the current frame) to start
"""Fuses Image and Lidar information to detect pedestrians
80
80
"""
81
-
# combined_point_cloud = self.combine_point_clouds # Removed because we only have transformation for a single lidar (ouster) at the moment. Probably should return np.array
81
+
# TODO: make fusion_callback return some data. Call the rest of Lukas' functions and Akul's stuff inside of this function.
# # combined_point_cloud = self.combine_point_clouds # Removed because we only have transformation for a single lidar (ouster) at the moment. Probably should return np.array
0 commit comments