1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! DO NOT EDIT! This file was autogenerated by `docs/snippets/build.rs`. The original is in `/home/runner/work/rerun/rerun/docs/snippets/all/archetypes/depth_image_simple.rs`.
//! Create and log a depth image.

use ndarray::{s, Array, ShapeBuilder};

pub fn main(_args: &[String]) -> Result<(), Box<dyn std::error::Error>> {
    let rec = rerun::RecordingStreamBuilder::new("rerun_example_depth_image_simple").spawn()?;

    let mut image = Array::<u16, _>::from_elem((200, 300).f(), 65535);
    image.slice_mut(s![50..150, 50..150]).fill(20000);
    image.slice_mut(s![130..180, 100..280]).fill(45000);

    let depth_image = rerun::DepthImage::try_from(image)?.with_meter(10_000.0);

    rec.log("depth", &depth_image)?;

    Ok(())
}