Lyyo

Results 2 comments of Lyyo

If I want to visualize the gaze and gaze_center in the scene's OBJ file, how should I align the two?

for frame_idx in range(start_frame, end_frame + 1,30): print(f"正在处理帧 {frame_idx}") # 加载 SMPL-X 模型 smplx_obj_path = os.path.join(smplx_obj_folder, f"{frame_idx}.obj") if not os.path.exists(smplx_obj_path): print(f"帧 {frame_idx} 的 SMPL-X 模型不存在。") continue smplx_mesh = trimesh.load(smplx_obj_path) #...