Log rich data, such as images and point clouds, and visualize it live or after the fact, with time scrubbing.
rust add rerun
``` rust rerun::MsgSender::new("points") .withcomponent(&points)? .withcomponent(&colors)? .send(&mut rerun::global_session())?;
rerun::MsgSender::new("image") .withcomponent(&[rerun::component::Tensor::fromimage(image)])? .send(&mut rerun::global_session())?; ```
You can add the rerun
crate to your project with cargo add rerun
(soon).
To get started, see the examples.
You can install the binary with cargo install rerun
(soon).
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:
sh
cargo install --features web rerun
rerun -- --web-viewer ../nyud.rrd