mirror of
https://github.com/graphdeco-inria/gaussian-splatting
synced 2025-04-04 21:22:39 +00:00
Merge pull request #9 from ubc-vision/8-any-reason-for-the-n_max-selection
clamp N
This commit is contained in:
commit
1926e2c007
@ -9,4 +9,5 @@ for n in range(N_max):
|
||||
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)
|
Loading…
Reference in New Issue
Block a user