We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, on the line 155 of gaussian_model.py, should features[:, 3:, 1:] = 0.0 be features[:, :3, 1:] = 0.0 instead?
gaussian_model.py
features[:, 3:, 1:] = 0.0
features[:, :3, 1:] = 0.0
def create_from_pcd(self, pcd : BasicPointCloud, cam_infos : int, spatial_lr_scale : float): self.spatial_lr_scale = spatial_lr_scale fused_point_cloud = torch.tensor(np.asarray(pcd.points)).float().cuda() fused_color = RGB2SH(torch.tensor(np.asarray(pcd.colors)).float().cuda()) features = torch.zeros((fused_color.shape[0], 3, (self.max_sh_degree + 1) ** 2)).float().cuda() features[:, :3, 0 ] = fused_color features[:, 3:, 1:] = 0.0
The text was updated successfully, but these errors were encountered:
The line is even redundant.
Sorry, something went wrong.
Yes, I think it was originally written this way to deliberately emphasize the point.
No branches or pull requests
Hello, on the line 155 of
gaussian_model.py
, shouldfeatures[:, 3:, 1:] = 0.0
befeatures[:, :3, 1:] = 0.0
instead?The text was updated successfully, but these errors were encountered: