-
Notifications
You must be signed in to change notification settings - Fork 7
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
Testing HoP with nuScenes mini Split #3
Comments
Hi @MangoDragon Thank you for your interest in SeaBird.
elif nuscenes_version == 'v1.0-mini':
set = 'mini'
dataset = pickle.load(
open('./data/nuscenes/%s_infos_%s.pkl' % (extra_tag, set), 'rb'))
for id in range(len(dataset['infos'])):
if id % 10 == 0:
print('%d/%d' % (id, len(dataset['infos'])))
info = dataset['infos'][id]
# get sweep adjacent frame info
sample = nuscenes.get('sample', info['token'])
dataset['infos'][id]['scene_token'] = sample['scene_token']
with open('./data/nuscenes/%s_infos_%s.pkl' % (extra_tag, set),
'wb') as fid:
pickle.dump(dataset, fid)
The HoP baseline inherently uses mmdetection3d codebase. You could use the visualization guide to visualize the 3D boxes. PS: It would be great if you could support the SeaBird repo by starring it. |
Thank you for your reply! I starred the repo too. What should I use for the pkl? Are they created from the large dataset or do I need to download them from somewhere? |
The
Thank you for your support 😄 |
Using the following code:
and
When using the command:
Only 2 pkl's are created. If I use
Edit: One more thing, For the tutorial you referenced, I found the code:
The pkl file it loads seems to be part of the KITTI database. How would the image and pkl loading work regarding nuscenes? |
Hi,
I wanted to write this in a discussion, but I couldn't find the section for it.
Is it possible to test HoP without using the full (very large) dataset from nuscenes or training it? I would just like to give it data from a smaller dataset such as the mini subset (or my own recordings etc) and see the 3D bounding boxes.
Kind regards
The text was updated successfully, but these errors were encountered: