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
Hi,
I am trying to relate the traffic light annotations to the pedestrian tracklets. I am reading the data_cache/pie_database.pkl to visualize the annotations.
tl_frames are larger than tl_bbox and have some '3' in them. such frameids do not exist
tl_bbox dont exactly fall on the correct spot.
For example
for idx, b in enumerate(tl_bbox):
i = cv2.imread(imgloc + set + '/' + vid + '/' + str(tl_frames[idx]).zfill(5) + '.png')
if i is not None:
cv2.rectangle(i, (int(b[0]), int(b[1])), (int(b[2]), int(b[3])), (0, 255, 0), 2, cv2.LINE_AA)
cv2.imshow('TL', cv2.resize(i, None, fx=0.5, fy=0.5))
Hi,
I am trying to relate the traffic light annotations to the pedestrian tracklets. I am reading the data_cache/pie_database.pkl to visualize the annotations.
Here when I read
Now issues arise,
For example
The traffic light starts drifting with the car motion. The first TL is correct but then it keeps drifting away.
https://drive.google.com/open?id=1CanNpO29LtOYB2uapb2DJE6SlnPGrE8t
Is there something wrong with pkl creation ? Or am I reading the boxes wrong.
P.S : a visualization script might go a along way.
The text was updated successfully, but these errors were encountered: