NVlabs / FB-BEV

Official PyTorch implementation of FB-BEV & FB-OCC - Forward-backward view transformation for vision-centric autonomous driving perception

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vis_occupancy results problem

Chris91gp opened this issue · comments

Thanks for great work,how to use tools/ vis_occupancy.py to show the result? it looks like has bug. I don't know where the problem is.
the inputs shape is 200 * 200 * 18

image

Hello, I encountered the same issue as you. May I ask if you have successfully resolved it?

Hi, I also have a similar issue. Did anyone manage to solve this?

commented

@Chris91gp @KarlLi5 @pisquilo Hello, the voxels with the prediction label equal to 17 (free) can be filtered out when drawing. Add the following codes

fov_voxels = fov_voxels[fov_voxels[:, 3] != 17]

before

# outfov_voxels = outfov_grid_coords[

thanks, I already tried, it works. question closed