autonomousvision / mip-splatting

[CVPR'24 Best Student Paper] Mip-Splatting: Alias-free 3D Gaussian Splatting
https://niujinshuchong.github.io/mip-splatting/
Other
1.11k stars 71 forks source link

Mip-Splatting (ours) w/o 3D smoothing filter #57

Closed luocha0107 closed 1 month ago

luocha0107 commented 1 month ago

Hi,a nice job. I would like to do ablation experiments on Mip-Splatting (ours) w/o 3D smoothing filter,what should i do? Is there direct command-line code available? I directly set filter_3D to 0, but training to 10% shows cuda kernel error.

niujinshuchong commented 1 month ago

Hi, I think we simply change this line https://github.com/autonomousvision/mip-splatting/blob/main/scene/gaussian_model.py#L190 to filter_3D = distance / focal_length * 0.0.

luocha0107 commented 1 month ago

Hi, I think we simply change this line https://github.com/autonomousvision/mip-splatting/blob/main/scene/gaussian_model.py#L190 to filter_3D = distance / focal_length * 0.0. ok,i get it! thank you for reply.