gaussian-splatting
gaussian-splatting copied to clipboard
How to adjust "Scaling Modifier" in render.py?
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?
I found a position to input "Scaling Modifier" just now. In render.py,
rendering = render(view, gaussians, pipeline, background)["render"]
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
What is a scaling modifier? Are scaling modifier and ineration the same thing?