| """ |
| Copyright (c) 2022 Ruilong Li, UC Berkeley. |
| """ |
|
|
| from typing import Callable, List, Union |
|
|
| import numpy as np |
| import torch |
| from torch.autograd import Function |
| from torch.cuda.amp import custom_bwd, custom_fwd |
| import torch.nn.functional as F |
|
|
| try: |
| import tinycudann as tcnn |
| except ImportError as e: |
| print( |
| f"Error: {e}! " |
| "Please install tinycudann by: " |
| "pip install git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch" |
| ) |
| exit() |
|
|
|
|
| class _TruncExp(Function): |
| |
| |
| @staticmethod |
| @custom_fwd(cast_inputs=torch.float32) |
| def forward(ctx, x): |
| ctx.save_for_backward(x) |
| return torch.exp(x) |
|
|
| @staticmethod |
| @custom_bwd |
| def backward(ctx, g): |
| x = ctx.saved_tensors[0] |
| return g * torch.exp(torch.clamp(x, max=15)) |
|
|
|
|
| trunc_exp = _TruncExp.apply |
|
|
|
|
| def contract_to_unisphere( |
| x: torch.Tensor, |
| aabb: torch.Tensor, |
| ord: Union[str, int] = 2, |
| |
| eps: float = 1e-6, |
| derivative: bool = False, |
| ): |
| aabb_min, aabb_max = torch.split(aabb, 3, dim=-1) |
| x = (x - aabb_min) / (aabb_max - aabb_min) |
| x = x * 2 - 1 |
| mag = torch.linalg.norm(x, ord=ord, dim=-1, keepdim=True) |
| mask = mag.squeeze(-1) > 1 |
|
|
| if derivative: |
| dev = (2 * mag - 1) / mag**2 + 2 * x**2 * ( |
| 1 / mag**3 - (2 * mag - 1) / mag**4 |
| ) |
| dev[~mask] = 1.0 |
| dev = torch.clamp(dev, min=eps) |
| return dev |
| else: |
| x[mask] = (2 - 1 / mag[mask]) * (x[mask] / mag[mask]) |
| x = x / 4 + 0.5 |
| return x |
|
|
|
|
| class NGPRadianceField(torch.nn.Module): |
| """Instance-NGP Radiance Field""" |
|
|
| def __init__( |
| self, |
| aabb: Union[torch.Tensor, List[float]], |
| num_dim: int = 3, |
| use_viewdirs: bool = True, |
| density_activation: Callable = lambda x: trunc_exp(x - 1), |
| radiance_activation: Callable = lambda x: F.sigmoid(x), |
| unbounded: bool = False, |
| base_resolution: int = 16, |
| max_resolution: int = 4096, |
| geo_feat_dim: int = 15, |
| n_levels: int = 16, |
| log2_hashmap_size: int = 19, |
| args = None |
| ) -> None: |
| super().__init__() |
| if not isinstance(aabb, torch.Tensor): |
| aabb = torch.tensor(aabb, dtype=torch.float32) |
| self.register_buffer("aabb", aabb) |
| self.num_dim = num_dim |
| self.radiance_activation = radiance_activation |
| self.use_viewdirs = use_viewdirs |
| self.density_activation = density_activation |
| self.unbounded = unbounded |
| self.base_resolution = base_resolution |
| self.max_resolution = max_resolution |
| self.geo_feat_dim = geo_feat_dim |
| self.n_levels = n_levels |
| self.log2_hashmap_size = log2_hashmap_size |
| self.version = args.version |
| self.radiance_activation = radiance_activation |
| self.n_output_dim = 3 |
| |
| |
|
|
|
|
| per_level_scale = np.exp( |
| (np.log(max_resolution) - np.log(base_resolution)) / (n_levels - 1) |
| ).tolist() |
|
|
| if self.use_viewdirs: |
| self.direction_encoding = tcnn.Encoding( |
| n_input_dims=num_dim, |
| encoding_config={ |
| "otype": "Composite", |
| "nested": [ |
| { |
| "n_dims_to_encode": 3, |
| "otype": "SphericalHarmonics", |
| "degree": 4, |
| }, |
| |
| ], |
| }, |
| ) |
|
|
| self.mlp_base = tcnn.NetworkWithInputEncoding( |
| n_input_dims=num_dim, |
| n_output_dims=1 + self.geo_feat_dim, |
| encoding_config={ |
| "otype": "HashGrid", |
| "n_levels": n_levels, |
| "n_features_per_level": 2, |
| "log2_hashmap_size": log2_hashmap_size, |
| "base_resolution": base_resolution, |
| "per_level_scale": per_level_scale, |
| }, |
| network_config={ |
| "otype": "FullyFusedMLP", |
| "activation": "ReLU", |
| "output_activation": "None", |
| "n_neurons": 64, |
| "n_hidden_layers": 1, |
| }, |
| ) |
| if self.geo_feat_dim > 0: |
| self.mlp_head = tcnn.Network( |
| n_input_dims=( |
| ( |
| self.direction_encoding.n_output_dims |
| if self.use_viewdirs |
| else 0 |
| ) |
| + self.geo_feat_dim |
| ), |
| n_output_dims=self.n_output_dim, |
| network_config={ |
| "otype": "FullyFusedMLP", |
| "activation": "ReLU", |
| "output_activation": "None", |
| "n_neurons": 64, |
| "n_hidden_layers": 2, |
| }, |
| ) |
|
|
| def query_density(self, x, return_feat: bool = False): |
| if self.unbounded: |
| x = contract_to_unisphere(x, self.aabb) |
| else: |
| aabb_min, aabb_max = torch.split(self.aabb, self.num_dim, dim=-1) |
| x = (x - aabb_min) / (aabb_max - aabb_min) |
| selector = ((x > 0.0) & (x < 1.0)).all(dim=-1) |
| x = ( |
| self.mlp_base(x.view(-1, self.num_dim)) |
| .view(list(x.shape[:-1]) + [1 + self.geo_feat_dim]) |
| .to(x) |
| ) |
| density_before_activation, base_mlp_out = torch.split( |
| x, [1, self.geo_feat_dim], dim=-1 |
| ) |
| density = ( |
| self.density_activation(density_before_activation) |
| * selector[..., None] |
| ) |
| if return_feat: |
| return density, base_mlp_out |
| else: |
| return density |
|
|
| def _query_rgb(self, dir, embedding, apply_act: bool = True): |
| |
| if self.use_viewdirs: |
| dir = (dir + 1.0) / 2.0 |
| d = self.direction_encoding(dir.reshape(-1, dir.shape[-1])) |
| h = torch.cat([d, embedding.reshape(-1, self.geo_feat_dim)], dim=-1) |
| else: |
| h = embedding.reshape(-1, self.geo_feat_dim) |
| rgb = ( |
| self.mlp_head(h) |
| .reshape(list(embedding.shape[:-1]) + [self.n_output_dim]) |
| .to(embedding) |
| ) |
| if apply_act: |
| rgb = self.radiance_activation(rgb) |
|
|
| return rgb |
|
|
| def forward( |
| self, |
| positions: torch.Tensor, |
| directions: torch.Tensor = None, |
| ): |
| if positions.shape[0] == 0: |
| density = torch.zeros(0, device=positions.device) |
| color = torch.zeros(0, 1200, device=positions.device) |
| return color, density |
|
|
| if self.use_viewdirs and (directions is not None): |
| assert ( |
| positions.shape == directions.shape |
| ), f"{positions.shape} v.s. {directions.shape}" |
| density, embedding = self.query_density(positions, return_feat=True) |
| rgb = self._query_rgb(directions, embedding=embedding) |
| else: |
| density, embedding = self.query_density(positions, return_feat=True) |
| rgb = self._query_rgb(directions, embedding=embedding) |
| return rgb, density |
|
|
|
|
| class NGPDensityField(torch.nn.Module): |
| """Instance-NGP Density Field used for resampling""" |
|
|
| def __init__( |
| self, |
| aabb: Union[torch.Tensor, List[float]], |
| num_dim: int = 3, |
| density_activation: Callable = lambda x: trunc_exp(x - 1), |
| unbounded: bool = False, |
| base_resolution: int = 16, |
| max_resolution: int = 128, |
| n_levels: int = 5, |
| log2_hashmap_size: int = 17, |
| ) -> None: |
| super().__init__() |
| if not isinstance(aabb, torch.Tensor): |
| aabb = torch.tensor(aabb, dtype=torch.float32) |
| self.register_buffer("aabb", aabb) |
| self.num_dim = num_dim |
| self.density_activation = density_activation |
| self.unbounded = unbounded |
| self.base_resolution = base_resolution |
| self.max_resolution = max_resolution |
| self.n_levels = n_levels |
| self.log2_hashmap_size = log2_hashmap_size |
|
|
| per_level_scale = np.exp( |
| (np.log(max_resolution) - np.log(base_resolution)) / (n_levels - 1) |
| ).tolist() |
|
|
| self.mlp_base = tcnn.NetworkWithInputEncoding( |
| n_input_dims=num_dim, |
| n_output_dims=1, |
| encoding_config={ |
| "otype": "HashGrid", |
| "n_levels": n_levels, |
| "n_features_per_level": 2, |
| "log2_hashmap_size": log2_hashmap_size, |
| "base_resolution": base_resolution, |
| "per_level_scale": per_level_scale, |
| }, |
| network_config={ |
| "otype": "FullyFusedMLP", |
| "activation": "ReLU", |
| "output_activation": "None", |
| "n_neurons": 64, |
| "n_hidden_layers": 1, |
| }, |
| ) |
|
|
| def forward(self, positions: torch.Tensor): |
| if self.unbounded: |
| positions = contract_to_unisphere(positions, self.aabb) |
| else: |
| aabb_min, aabb_max = torch.split(self.aabb, self.num_dim, dim=-1) |
| positions = (positions - aabb_min) / (aabb_max - aabb_min) |
| selector = ((positions > 0.0) & (positions < 1.0)).all(dim=-1) |
| density_before_activation = ( |
| self.mlp_base(positions.view(-1, self.num_dim)) |
| .view(list(positions.shape[:-1]) + [1]) |
| .to(positions) |
| ) |
| density = ( |
| self.density_activation(density_before_activation) |
| * selector[..., None] |
| ) |
| return density |
| |