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
def rescale(self, scale: float):
if scale != 1.:
self.xyz *= scale
self.scales += np.log(scale)
print("rescaled with factor {}".format(scale))
First of all great work! If we scale the Gaussian by two times, why does its center xyz change? Why is self.scales += np.log(scale) instead of self.scales *= scale? Could you explain it?
The text was updated successfully, but these errors were encountered:
First of all great work! If we scale the Gaussian by two times, why does its center xyz change? Why is
self.scales += np.log(scale)
instead ofself.scales *= scale
? Could you explain it?The text was updated successfully, but these errors were encountered: