Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 2.17 KB

File metadata and controls

51 lines (36 loc) · 2.17 KB
title
Image

A monochrome or color image.

The order of dimensions in the underlying TensorData follows the typical row-major, interleaved-pixel image format. Additionally, Rerun orders the TensorDimensions within the shape description from outer-most to inner-most.

As such, the shape of the TensorData must be mappable to:

  • A HxW tensor, treated as a grayscale image.
  • A HxWx3 tensor, treated as an RGB image.
  • A HxWx4 tensor, treated as an RGBA image.

Leading and trailing unit-dimensions are ignored, so that 1x480x640x3x1 is treated as a 480x640x3 RGB image.

Rerun also supports compressed image encoded as JPEG, N12, and YUY2. Using these formats can save a lot of bandwidth and memory.

Components

Required: TensorData

Optional: DrawOrder

Shown in

API reference links

Example

image_simple

snippet: archetypes/image_simple