forked from learning3d/assignment3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender_functions.py
More file actions
112 lines (91 loc) · 3.37 KB
/
render_functions.py
File metadata and controls
112 lines (91 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import argparse
import os
import sys
import datetime
import time
import math
import json
import torch
import numpy as np
from PIL import Image
import matplotlib.pyplot as plt
import pytorch3d
import torch
from pytorch3d.renderer import look_at_view_transform
from pytorch3d.renderer import OpenGLPerspectiveCameras
from pytorch3d.renderer import (
AlphaCompositor,
RasterizationSettings,
MeshRenderer,
MeshRasterizer,
PointsRasterizationSettings,
PointsRenderer,
PointsRasterizer,
HardPhongShader,
)
def get_device():
"""
Checks if GPU is available and returns device accordingly.
"""
if torch.cuda.is_available():
device = torch.device("cuda:0")
else:
device = torch.device("cpu")
return device
def get_points_renderer(
image_size=512, device=None, radius=0.01, background_color=(1, 1, 1)
):
"""
Returns a Pytorch3D renderer for point clouds.
Args:
image_size (int): The rendered image size.
device (torch.device): The torch device to use (CPU or GPU). If not specified,
will automatically use GPU if available, otherwise CPU.
radius (float): The radius of the rendered point in NDC.
background_color (tuple): The background color of the rendered image.
Returns:
PointsRenderer.
"""
if device is None:
if torch.cuda.is_available():
device = torch.device("cuda:0")
else:
device = torch.device("cpu")
raster_settings = PointsRasterizationSettings(image_size=image_size, radius=radius,)
renderer = PointsRenderer(
rasterizer=PointsRasterizer(raster_settings=raster_settings),
compositor=AlphaCompositor(background_color=background_color),
)
return renderer
def render_points(filename, points, image_size=256, color=[0.7, 0.7, 1], device=None):
# The device tells us whether we are rendering with GPU or CPU. The rendering will
# be *much* faster if you have a CUDA-enabled NVIDIA GPU. However, your code will
# still run fine on a CPU.
# The default is to run on CPU, so if you do not have a GPU, you do not need to
# worry about specifying the device in all of these functions.
if device is None:
device = get_device()
# Get the renderer.
points_renderer = get_points_renderer(image_size=256,radius=0.01)
# Get the vertices, faces, and textures.
# vertices, faces = load_cow_mesh(cow_path)
# vertices = vertices.unsqueeze(0) # (N_v, 3) -> (1, N_v, 3)
# faces = faces.unsqueeze(0) # (N_f, 3) -> (1, N_f, 3)
textures = torch.ones(points.size()).to(device)*0.5 # (1, N_v, 3)
rgb = textures * torch.tensor(color).to(device) # (1, N_v, 3)
point_cloud = pytorch3d.structures.pointclouds.Pointclouds(
points=points, features=rgb
)
R, T = look_at_view_transform(10.0, 10.0, 96)
# Prepare the camera:
cameras = OpenGLPerspectiveCameras(
R=R,T=T, device=device
)
rend = points_renderer(point_cloud.extend(2), cameras=cameras)
# Place a point light in front of the cow.
# lights = pytorch3d.renderer.PointLights(location=[[0.0, 1.0, -2.0]], device=device)
# rend = renderer(mesh, cameras=cameras, lights=lights)
rend = rend.detach().cpu().numpy()[0, ..., :3] # (B, H, W, 4) -> (H, W, 3)
plt.imsave(filename, rend)
# The .cpu moves the tensor to GPU (if needed).
return rend