Browse Source

Remove / within depth naming

tags/v0.3.9-rc1
haixuantao 1 year ago
parent
commit
97de48fc70
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      node-hub/dora-rerun/src/lib.rs

+ 1
- 1
node-hub/dora-rerun/src/lib.rs View File

@@ -165,7 +165,7 @@ pub fn lib_main() -> Result<()> {
)
});
let points_3d = Points3D::new(points_3d);
if let Some(color_buffer) = image_cache.get(&id.replace("/depth", "/image")) {
if let Some(color_buffer) = image_cache.get(&id.replace("depth", "image")) {
let colors = color_buffer
.chunks(3)
.map(|x| rerun::Color::from_rgb(x[0], x[1], x[2]))


Loading…
Cancel
Save