IA-SSD icon indicating copy to clipboard operation
IA-SSD copied to clipboard

Question about the GIF figure shown in README

Open OuyangJunyuan opened this issue 3 years ago • 4 comments

How to get a series of continuous point cloud in the KITTI dataset rather than the shuffled one like what in the training and testing sets. many thanks!

OuyangJunyuan avatar Jun 09 '22 16:06 OuyangJunyuan

Thanks for your interest.

Yes, the results obtained on the detection dataset are all static. In fact, to better visualize the detection demo, we deploy our IA-SSD on KITTI tracking dataset.

yifanzhang713 avatar Jun 16 '22 16:06 yifanzhang713

Nice work! Thanks for your reply.

OuyangJunyuan avatar Jun 23 '22 07:06 OuyangJunyuan

Thanks for your interest.

Yes, the results obtained on the detection dataset are all static. In fact, to better visualize the detection demo, we deploy our IA-SSD on KITTI tracking dataset.

How to highlight the representative point after sampling as the golden points show ? Could you please provide the visualization code ? Thanks

xieqi1996 avatar Jul 11 '22 07:07 xieqi1996

Thanks for your interest. Yes, the results obtained on the detection dataset are all static. In fact, to better visualize the detection demo, we deploy our IA-SSD on KITTI tracking dataset.

How to highlight the representative point after sampling as the golden points show ? Could you please provide the visualization code ? Thanks

你可以参考一下这个

    def add_keypoint(points, radius=0.05, color=None):
        for i in range(points.shape[0]):
            mesh_sphere = open3d.geometry.TriangleMesh.create_sphere(radius=radius)
            mesh_sphere.translate(points[i])
            mesh_sphere.compute_vertex_normals()
            if color is None:
                mesh_sphere.paint_uniform_color([0.1, 0.1, 0.7])
            else:
                mesh_sphere.paint_uniform_color(color)
            vis.add_geometry(mesh_sphere)

OuyangJunyuan avatar Jul 16 '22 06:07 OuyangJunyuan