Rerun 0.9 – a framework for visualizing streams of multimodal data
1–10 of 27 posts
Re: Rerun 0.9 – a framework for visualizing streams of multimodal data
#2Re: Rerun 0.9 – a framework for visualizing streams of multimodal data
#3Re: Rerun 0.9 – a framework for visualizing streams of multimodal data
#4The creator of Rerun (Emil Ernerfeldt) also created egui [1], an immediate GUI library for Rust. The library is similar to Dear ImGui but it is written in Rust and can be used for desktop and web apps (compiles to WASM and uses WebGL, demo [2]). Desktop apps can target OpenGL (does not display correct colors on macOS, does not work in VirtualBox on Windows) or WGPU (uses native APIs for each platform, works without a…
Re: Rerun 0.9 – a framework for visualizing streams of multimodal data
#5Re: Rerun 0.9 – a framework for visualizing streams of multimodal data
#6I like the styling of the app. It is quite different than default egui styling. If someone is reading that is familiar with the source can you point me to the parts most responsible for the look? (custom components, styling code, etc.) It will just save me a bunch of research. Thx
Re: Rerun 0.9 – a framework for visualizing streams of multimodal data
#7Looks interesting. Do you have visualizations or examples on debugging audio embeddings (like https://huggingface.co/spaces/facebook/MusicGen ) ?
Re: Rerun 0.9 – a framework for visualizing streams of multimodal data
#8Looks interesting. Do you have visualizations or examples on debugging audio embeddings (like https://huggingface.co/spaces/facebook/MusicGen ) ?
We have an open issue for adding more support for audio-based projects -- if you have specific needs feel free to add a comment: https://github.com/rerun-io/rerun/issues/2852
Re: Rerun 0.9 – a framework for visualizing streams of multimodal data
#9I like the styling of the app. It is quite different than default egui styling. If someone is reading that is familiar with the source can you point me to the parts most responsible for the look? (custom components, styling code, etc.) It will just save me a bunch of research. Thx
The `re_ui` crate is responsible for most of the non-default styling. Here's the method where it it gets applied, which probably serves as a good reference for extending the look and feel of an egui application: https://github.com/rerun-io/rerun/blob/release-0.9.0/crates/...
Re: Rerun 0.9 – a framework for visualizing streams of multimodal data
#10I like the styling of the app. It is quite different than default egui styling. If someone is reading that is familiar with the source can you point me to the parts most responsible for the look? (custom components, styling code, etc.) It will just save me a bunch of research. Thx
The `re_ui` crate is responsible for most of the non-default styling. Here's the method where it it gets applied, which probably serves as a good reference for extending the look and feel of an egui application: https://github.com/rerun-io/rerun/blob/release-0.9.0/crates/...