gaussian-splatting icon indicating copy to clipboard operation
gaussian-splatting copied to clipboard

How to adjust "Scaling Modifier" in render.py?

Open ThePassedWind opened this issue 1 year ago • 3 comments

image

In SIBR Viewer, we can adjust Scaling Modifier by dragging the bar. But I don't know how to adjust the same parameter in render.py?

ThePassedWind avatar Nov 19 '23 08:11 ThePassedWind

I found a position to input "Scaling Modifier" just now. In render.py,

rendering = render(view, gaussians, pipeline, background)["render"]

ThePassedWind avatar Nov 19 '23 08:11 ThePassedWind

You can simply modify the gaussians._scaling to set them smaller if you wish. Note that the _scaling values are stored on a log scale.

For example this will divide all sizes by e. gaussians._scaling[:]=gaussians._scaling[:]-1

Ph03n1xdust avatar Nov 20 '23 10:11 Ph03n1xdust

What is a scaling modifier? Are scaling modifier and ineration the same thing?

mykbs113 avatar Mar 13 '24 07:03 mykbs113