torch-ngp icon indicating copy to clipboard operation
torch-ngp copied to clipboard

Using temporal basis to model dynamic scene

Open haonanhe opened this issue 1 year ago • 0 comments

Hi, I'm trying to run the code using temporal basis to model dynamic scenes. The sigma and color output of sigma net and color net are multiplied with time basis as shown below:

        # torch-ngp/dnerf/network_basis.py 
        # sigma 
        sigma = trunc_exp(h[..., :self.sigma_basis_dim] @ sigma_basis)  
        # sigmoid activation for RGB 
        rgbs = torch.sigmoid(h.view(-1, 3, self.color_basis_dim) @ color_basis) 

I was just wondering which paper this code refers to. It would be very helpful if you could give me some hints.

haonanhe avatar Apr 20 '23 12:04 haonanhe