gaussian-splatting/utils/reloc_utils.py
Shakiba Kheradmand 33924d1ce1 clamp N
2024-06-29 21:32:51 -07:00

13 lines
396 B
Python

from diff_gaussian_rasterization import compute_relocation
import torch
import math
N_max = 51
binoms = torch.zeros((N_max, N_max)).float().cuda()
for n in range(N_max):
for k in range(n+1):
binoms[n, k] = math.comb(n, k)
def compute_relocation_cuda(opacity_old, scale_old, N):
N.clamp_(min=1, max=N_max-1)
return compute_relocation(opacity_old, scale_old, N, binoms, N_max)