PointCloudSequence.disp#

PointCloudSequence.disp(animate: bool = False, fps: float = 10.0, title: str | None = None, loop: bool = False) None[source]#

Display the point-cloud sequence interactively using Open3D GUI.

Parameters:
  • animate (bool, optional) – if True, play as timed animation; if False (default), step through one cloud at a time

  • fps (float, optional) – playback rate in frames per second, used when animate=True, defaults to 10.0

  • title (str or None, optional) – window title, defaults to "PointCloudSequence"

  • loop (bool, optional) – restart when the sequence ends (animate mode only), defaults to False

Keys — step-through mode (animate=False):

  • [space] — next cloud

  • [1-9] / [0] — jump 1–9 or 10 clouds

  • [l] / [c] / [d] — jump 50 / 100 / 500 clouds

  • [q] / [x] — quit

Keys — animate mode (animate=True):

  • [space] — pause / resume

  • [=] — increase playback speed

  • [-] — decrease playback speed

  • [q] / [x] — quit

Seealso:

ImageSequence