You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i want to generate target_color grid object using the following code:
print(torch.min(src_gpu_colors), torch.max(src_gpu_colors)) #color are loaded by open3d and value of all colors are in range [0, 1]
target_color = target_grid.splat_trilinear(fvdb.JaggedTensor(src_vertices), fvdb.JaggedTensor(src_gpu_colors))
print(torch.min(target_color.jdata), torch.max(target_color.jdata), torch.sum(target_color.jdata > 1))
however the range of target_color.jdata are out of [0, 1], is that right?
The text was updated successfully, but these errors were encountered:
i want to generate target_color grid object using the following code:
print(torch.min(src_gpu_colors), torch.max(src_gpu_colors)) #color are loaded by open3d and value of all colors are in range [0, 1]
target_color = target_grid.splat_trilinear(fvdb.JaggedTensor(src_vertices), fvdb.JaggedTensor(src_gpu_colors))
print(torch.min(target_color.jdata), torch.max(target_color.jdata), torch.sum(target_color.jdata > 1))
however the range of target_color.jdata are out of [0, 1], is that right?
The text was updated successfully, but these errors were encountered: