Crates.io | rerun |
lib.rs | rerun |
version | 0.19.1 |
source | src |
created_at | 2020-08-11 16:08:54.765828 |
updated_at | 2024-11-05 11:18:29.445173 |
description | Log images, point clouds, etc, and visualize them effortlessly |
homepage | https://rerun.io |
repository | https://github.com/rerun-io/rerun |
max_upload_size | |
id | 275395 |
size | 107,759 |
Rerun is an SDK for logging computer vision and robotics data paired with a visualizer for exploring that data over time. It lets you debug and understand the internal state and data of your systems with minimal code.
cargo add rerun
let rec = rerun::RecordingStream::global(rerun::StoreKind::Recording)?;
rec.log("points", &rerun::archetypes::Points3D::new(points).with_colors(colors))?;
rec.log("image", &rerun::archetypes::Image::new(image))?;
You can add the rerun
crate to your project with cargo add rerun
.
To get started, see the examples.
You can install the binary with cargo install rerun-cli --locked
This can act either as a server, a viewer, or both, depending on which options you use when you start it.
Running rerun
with no arguments will start the viewer, waiting for an SDK to connect to it over TCP.
Run rerun --help
for more.
The web viewer is an experimental feature, but you can try it out with:
rerun --web-viewer path/to/file.rrd