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
Hi, your work is great, I have some questions to ask:
confidence = torch.ones_like(pc._opacity)
raster_settings = GaussianRasterizationSettings(
image_height=int(viewpoint_camera.image_height),
image_width=int(viewpoint_camera.image_width),
tanfovx=tanfovx,
tanfovy=tanfovy,
bg=bg_color,
scale_modifier=scaling_modifier,
viewmatrix=viewpoint_camera.world_view_transform,
projmatrix=viewpoint_camera.full_proj_transform,
sh_degree=pc.active_sh_degree,
campos=viewpoint_camera.camera_center,
prefiltered=False,
debug=False,
confidence=confidence
) What is the confidence here, do you need to change the cuda code?
The text was updated successfully, but these errors were encountered:
Sorry for the late reply. Actually, we did not use the official renderer from Gaussian splatting; you can find more details in the README. Additionally, we haven't made any specific adjustments to the confidence values.
Hi, your work is great, I have some questions to ask:
confidence = torch.ones_like(pc._opacity)
raster_settings = GaussianRasterizationSettings(
image_height=int(viewpoint_camera.image_height),
image_width=int(viewpoint_camera.image_width),
tanfovx=tanfovx,
tanfovy=tanfovy,
bg=bg_color,
scale_modifier=scaling_modifier,
viewmatrix=viewpoint_camera.world_view_transform,
projmatrix=viewpoint_camera.full_proj_transform,
sh_degree=pc.active_sh_degree,
campos=viewpoint_camera.camera_center,
prefiltered=False,
debug=False,
confidence=confidence
) What is the confidence here, do you need to change the cuda code?
The text was updated successfully, but these errors were encountered: