IA-SSD
IA-SSD copied to clipboard
Question about the GIF figure shown in README
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!
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.
Nice work! Thanks for your reply.
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
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)