【问题标题】:PointCloud disappear at certain anglesPointCloud 在某些角度消失
【发布时间】:2022-07-23 03:46:53
【问题描述】:

当我以某种方式移动我的 pcd 时它消失了,任何人都遇到了这个问题,可以给我一些建议吗?

我曾多次尝试更改背景,获取不同的点云,尝试使用不同的可视化工具...

我的代码:

    def _on_snapshot(self):
        self.n_snapshots += 1
        title = "Open3D - Multi-Window Demo (Snapshot #" + str(self.n_snapshots) + ")"
        new_vis = o3d.visualization.O3DVisualizer(title)
        print(self.pcdA)
        new_vis.add_geometry(str(self.n_snapshots),
                             self.pcdA, self.settings.material)
        new_vis.reset_camera_to_default()
        bounds = self.pcdA.get_axis_aligned_bounding_box()
        extent = bounds.get_extent()
        new_vis.setup_camera(60, bounds.get_center(),
                             bounds.get_center() + [0, 0, -3], [0, -1, 0])
        o3d.visualization.gui.Application.instance.add_window(new_vis)

我使用了一个简单的绘图函数。

显示问题的视频: https://vimeo.com/680479067

【问题讨论】:

    标签: 3d point-clouds open3d


    【解决方案1】:

    我也有同样的问题。有更新吗?

    我发现的唯一东西就是这个。 parts of rendering disappearing when moving focus (open3d)

    但这并没有解决问题...

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2016-12-08
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-06-17
      • 2012-09-11
      相关资源
      最近更新 更多