Open3d: Visualizing a sequence of pcd files

Created on 13 Apr 2018  ·  3Comments  ·  Source: intel-isl/Open3D

Thanks for all the hard work!

I have a sequence of pcd files that correspond to point cloud data recorded over some period of time. Is there a way to animate/visualize this using the current Open3D implementation?

help wanted question

Most helpful comment

I don't think the interface is exposed in python binding.
But for C++, there is a way to do this.

In general, just inherent a class from VisualizerWithCustomAnimation, and create a function similar to:
https://github.com/IntelVCL/Open3D/blob/50a31d8daaf3218b767ddbacc0db4e4f125f13d6/src/Visualization/Visualizer/VisualizerWithCustomAnimation.cpp#L88

Edit this->geometry_ptrs_ in the lambda function bond by RegisterAnimationCallback.

All 3 comments

This is an open issue. One work around is to refer @felixendres's solution in #145.

and we would be appreciated if somebody can contribute for this.

I don't think the interface is exposed in python binding.
But for C++, there is a way to do this.

In general, just inherent a class from VisualizerWithCustomAnimation, and create a function similar to:
https://github.com/IntelVCL/Open3D/blob/50a31d8daaf3218b767ddbacc0db4e4f125f13d6/src/Visualization/Visualizer/VisualizerWithCustomAnimation.cpp#L88

Edit this->geometry_ptrs_ in the lambda function bond by RegisterAnimationCallback.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

DKandrew picture DKandrew  ·  4Comments

marcel-bariou picture marcel-bariou  ·  3Comments

hzxie picture hzxie  ·  4Comments

nrj127 picture nrj127  ·  4Comments

HaiyongJiang picture HaiyongJiang  ·  3Comments