Hi, Thanks for your great work
I want to ask that,
If I change file nusc-sem-gs.txt at use_semantic = True -> False:
After that, I get rgb_marched from occupancy_decoder.py (rgb_marched is rendered_image color was rasterized from diff-gausian-rasterizer) and visualize , but it's tensor full 0 (black images).
If I remain use_semantic = True at file nusc-sem-gs.txt and change file lib/gaussian_renderer/init.py at
raster_settings = diff_3d_gaussian_rasterization_semantic.GaussianRasterizationSettings(...) to raster_settings = diff_3d_gaussian_rasterization.GaussianRasterizationSettings(...)
And
rasterizer = diff_3d_gaussian_rasterization_semantic.GaussianRasterizer(raster_settings=raster_settings) to rasterizer = diff_3d_gaussian_rasterization.GaussianRasterizer(raster_settings=raster_settings)
I get the rgb_marched (or colors from rasterizer) like the image below (RGB - depth - color rasterizer, respectively)
3.If I not change anything, and run script code , rgb_marched has 18 channels (respectively 18 semantic classes) and I don't know how to reduce 18 channels to 3 channels to save the color image as input image.
So I want to ask how can I render RGB images from your rasterizer to visualize instead of load color of input from val_loader at run_vis.py?
Hi, Thanks for your great work I want to ask that,
3.If I not change anything, and run script code , rgb_marched has 18 channels (respectively 18 semantic classes) and I don't know how to reduce 18 channels to 3 channels to save the color image as input image.
So I want to ask how can I render RGB images from your rasterizer to visualize instead of load color of input from val_loader at run_vis.py?
Thank you