gpt4 book ai didi

python - Open3d - 将多个点云可视化为视频/动画

转载 作者:行者123 更新时间:2023-12-04 15:23:01 52 4
gpt4 key购买 nike

我已经使用 RGB+深度视频生成了多个点云,并希望将多个点云可视化为视频或动画。
目前我正在使用Python,我的部分代码如下:

for i in range(1,10)
pcd = Track.create_pcd(i)
o3d.visualization.draw_geometries([pcd])
pcd_list.append(pcd)
当我使用 draw_geometries 或 draw_geometries_with_animation_callback 时,它们似乎无法显示点云列表:
o3d.visualization.draw_geometries([pcd_list])
或者
def rotate_view(vis):
ctr = vis.get_view_control()
ctr.rotate(10.0, 0.0)
return False

o3d.visualization.draw_geometries_with_animation_callback([pcd_list],rotate_view)
它给出了以下错误:

TypeError: draw_geometries(): incompatible function arguments. Thefollowing argument types are supported:

  1. (geometry_list: List[open3d.open3d_pybind.geometry.Geometry], window_name: str = ‘Open3D’, width: int = 1920, height: int = 1080,left: int = 50, top: int = 50, point_show_normal: bool = False,mesh_show_wireframe: bool = False, mesh_show_back_face: bool = False)-> None

是否有任何示例说明如何将点云列表导出到视频中,例如设置查看器,并以 0.5 秒的等待键显示每个点云,然后另存为视频文件(.mp4/.avi)?
还要获取然后设置视频中点云的固定视点?
非常感谢!

最佳答案

您可以使用 Open3D Non-blocking visualization .
会是这样

vis = o3d.visualization.Visualizer()
vis.create_window()

# geometry is the point cloud used in your animaiton
geometry = o3d.geometry.PointCloud()
vis.add_geometry(geometry)

for i in range(icp_iteration):
# now modify the points of your geometry
# you can use whatever method suits you best, this is just an example
geometry.points = pcd_list[i].points
vis.update_geometry(geometry)
vis.poll_events()
vis.update_renderer()

关于python - Open3d - 将多个点云可视化为视频/动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62912397/

52 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com