Rerun: Visualization infrastructure for computer vision.
Use one of our logging APIs (Python or Rust) to log rich data, such as images and point clouds, to the Rerun Viewer, where it is visualized live or after the fact.
import rerun as rr
rr.init("my_app", spawn = True) # Spawn a Rerun Viewer and stream log events to it
rr.log_image("rgb_image", image)
rr.log_points("points", positions)
rr.log_rect("car", bbox)
β¦
Getting started
- Python:
pip install rerun-sdk
- Rust:
cargo add rerun
- C / C++: Coming soon
Rerun Viewer binary
Both the Python and Rust library can start the Rerun Viewer, but to stream log data over the network or load our .rrd
data files you also need the rerun
binary.
It can be installed with pip install rerun-sdk
or with cargo install rerun-cli
.
You should now be able to run rerun --help
in any terminal.
Documentation
π High-level docs- βοΈ Examples
π Python API docs- π¦ Rust API docs
βοΈ Troubleshooting
Status
We are in early beta. There are many features we want to add, and the API is still evolving. Expect breaking changes!
Some shortcomings:
- Big points clouds (1M+) are slow (#1136)
- The data you want to visualize must fit in RAM.
- See https://www.rerun.io/docs/howto/limit-ram for how to bound memory use
- We plan on having a disk-based data store some time in the future
- The Rust library takes a long time to compile
- We have way too many big dependencies, and we are planning on improving the situation (#1316)
Business model
Rerun uses an open-core model. Everything in this repository will stay open source and free (both as in beer and as in freedom). In the future, Rerun will offer a commercial product that builds on top of the core free project.
The Rerun open source project targets the needs of individual developers. The commercial product targets the needs specific to teams that build and run computer vision and robotics products.
Development
ARCHITECTURE.md
BUILD.md
rerun_py/README.md
- build instructions for Python SDKCODE_OF_CONDUCT.md
CODE_STYLE.md
CONTRIBUTING.md
RELEASES.md
Installing a pre-release Python SDK
- Download the correct
.whl
from GitHub Releases - Run
pip install rerun_sdk<...>.whl
(replace<...>
with the actual filename) - Test it:
rerun --version