I want to change the background color in Open3D when I draw geometries using open3d.visualization.draw_geometries, but I can't figure out how to that, as the documentation is not showing how to do it.
can you please tell me how can I change background color please? or show Skymap or example? thanks in advance.
open3d.visualization.draw_geometriesis a small wrapper function that callsopen3d.visualization.Visualizerclass methods. For customizing the rendering options, you will have to move to usingVisualizerclass directly which allows finer control on rendering and view control options.Now, to change background color, you can use Visualizer as below:-