From 8b095ba2be383c2ca849addef8f05c235bf21243 Mon Sep 17 00:00:00 2001 From: liuzhi Date: Wed, 8 May 2024 23:57:59 +0800 Subject: [PATCH] test --- scene/gaussian_model.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scene/gaussian_model.py b/scene/gaussian_model.py index 632a1e8..00ffea6 100644 --- a/scene/gaussian_model.py +++ b/scene/gaussian_model.py @@ -44,12 +44,12 @@ class GaussianModel: def __init__(self, sh_degree : int): self.active_sh_degree = 0 self.max_sh_degree = sh_degree - self._xyz = torch.empty(0) - self._features_dc = torch.empty(0) - self._features_rest = torch.empty(0) - self._scaling = torch.empty(0) - self._rotation = torch.empty(0) - self._opacity = torch.empty(0) + self._xyz = torch.empty(0) # δΈ–η•Œεζ ‡ + self._features_dc = torch.empty(0) # diffuse color + self._features_rest = torch.empty(0) # spherical harmonic coefficients + self._scaling = torch.empty(0) # 3d scale + self._rotation = torch.empty(0) # rotation expressed in quaternions + self._opacity = torch.empty(0) # opacity self.max_radii2D = torch.empty(0) self.xyz_gradient_accum = torch.empty(0) self.denom = torch.empty(0)