Point Clouds¶

This section covers displaying point cloud data in Vuer, including loading from files and programmatic streaming.

Show Point Clouds Programmatically and Fast¶

Learn two methods for displaying point clouds: loading PLY files from a static server or sending vertices/colors directly via websocket.

View full example →

../_images/pointcloud.png

PointCloud Animation¶

Animate point clouds using TimelineControls and the global app.update method to broadcast updates to all connected clients.

View full example →

PointCloud Animation (Upsert)¶

Similar to the animation example above, but uses session-based proxy.upsert to target specific client sessions instead of global broadcasting.

View full example →

Depth Point Cloud¶

Generate point clouds directly from depth images using the DepthPointCloud component with colormap support.

View full example →

Example List¶