File size: 2,839 Bytes
293829f |
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 |
import numpy as np
from matplotlib import colormaps
import rerun as rr
from rerun.components import Material
from scipy.spatial import transform
def color_fn(x, cmap="tab10"):
return colormaps[cmap](x % colormaps[cmap].N)
def ccd_log_sample(
root_name: str,
traj: np.ndarray,
):
traj = traj[0]
num_cameras = traj.shape[0]
rr.log(root_name, rr.ViewCoordinates.RIGHT_HAND_Y_DOWN, timeless=True)
rr.log(
f"{root_name}/trajectory/points",
rr.Points3D(traj[:, :3]),
timeless=True,
)
rr.log(
f"{root_name}/trajectory/line",
rr.LineStrips3D(
np.stack((traj[:, :3][:-1], traj[:, :3][1:]), axis=1),
colors=[(1.0, 0.0, 1.0, 1.0)], # Purple color
),
timeless=True,
)
for k in range(num_cameras):
rr.set_time_sequence("frame_idx", k)
translation = traj[k][:3]
fx = 955.02 # Focal length in X
fy = 955.02 # Focal length in Y (same as fx for 1:1 aspect ratio)
cx = 256 # Principal point X (center of 512x512 image)
cy = 256 # Principal point Y (center of 512x512 image)
K = np.array([
[fx, 0, cx],
[0, fy, cy],
[0, 0, 1]
])
rr.log(
f"{root_name}/camera/image",
rr.Pinhole(
image_from_camera=K,
width=K[0, -1] * 2,
height=K[1, -1] * 2,
),
)
width = K[0, -1] * 2
height = K[1, -1] * 2
fov_x = 2 * np.arctan(width / (2 * K[0, 0]))
fov_y = 2 * np.arctan(height / (2 * K[1, 1]))
horizontal_angle = np.arctan(traj[k][3] * np.tan(fov_x / 2))
vertical_angle = np.arctan(traj[k][4] * np.tan(fov_y / 2))
direction = -translation
direction /= np.linalg.norm(direction)
up = np.array([0, 1, 0])
right = np.cross(up, direction)
right /= np.linalg.norm(right)
up = np.cross(direction, right)
rotation_matrix = np.vstack([right, up, direction]).T
rotation_x = transform.Rotation.from_rotvec(vertical_angle * np.array([1, 0, 0]))
rotation_y = transform.Rotation.from_rotvec(-horizontal_angle * np.array([0, 1, 0]))
rotation_combined = rotation_y * transform.Rotation.from_matrix(rotation_matrix) * rotation_x
rotation_q = rotation_combined.as_quat()
rr.log(
f"{root_name}/camera",
rr.Transform3D(
translation=translation,
rotation=rr.Quaternion(xyzw=rotation_q),
),
)
rr.set_time_sequence("image", k)
rr.log(
f"{root_name}/char_traj/points",
rr.Points3D([[0, 0, 0]], colors=[(1.0, 0.0, 0.0, 1.0)]),
timeless=True,
)
|