You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so when store laplacian module to gaussian ply the raw scale should be
"scale = self.scaling_inverse_activation(self.get_scaling * self.get_shape).detach().cpu().numpy()"
instead of
"scale = (self._scaling * self.get_shape).detach().cpu().numpy()"
render_laplacian has modify the gaussian scale from 'pc.get_scaling' to 'pc.get_scaling * pc.get_shape'.
https://github.com/ajhamdi/ges-splatting/blob/c05fc7dbb22e270a5a6f490e7040adac4af02c96/gaussian_renderer/__init__.py#L150C9-L150C47
so when store laplacian module to gaussian ply the raw scale should be
"scale = self.scaling_inverse_activation(self.get_scaling * self.get_shape).detach().cpu().numpy()"
instead of
"scale = (self._scaling * self.get_shape).detach().cpu().numpy()"
https://github.com/ajhamdi/ges-splatting/blob/c05fc7dbb22e270a5a6f490e7040adac4af02c96/scene/laplacian_model.py#L217C6-L217C72
As
The text was updated successfully, but these errors were encountered: