From 97de48fc701c9d3b5ec3262e7569c8dac17e5bed Mon Sep 17 00:00:00 2001 From: haixuantao Date: Wed, 22 Jan 2025 09:22:36 +0100 Subject: [PATCH] Remove / within depth naming --- node-hub/dora-rerun/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-hub/dora-rerun/src/lib.rs b/node-hub/dora-rerun/src/lib.rs index 391e63e4..67bc06dd 100644 --- a/node-hub/dora-rerun/src/lib.rs +++ b/node-hub/dora-rerun/src/lib.rs @@ -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]))