FB-BEV icon indicating copy to clipboard operation
FB-BEV copied to clipboard

vis_occupancy results problem

Open Chris91gp opened this issue 1 year ago • 4 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

Chris91gp avatar Nov 21 '23 07:11 Chris91gp

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

KarlLi5 avatar Jan 15 '24 06:01 KarlLi5

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

pisquilo avatar Jan 25 '24 19:01 pisquilo

@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 https://github.com/NVlabs/FB-BEV/blob/832bd81866823a913a4c69552e1ca61ae34ac211/tools/analysis_tools/vis_occupancy.py#L187

WMCh avatar Feb 04 '24 02:02 WMCh

thanks, I already tried, it works. question closed

gaopeng91 avatar Jun 12 '24 08:06 gaopeng91