DepthPixelFormat

type DepthPixelFormat = 
  | "depth-16-bit"
  | "depth-32-bit"
  | "depth-point-cloud-32-bit"
  | "disparity-16-bit"
  | "disparity-32-bit"
  | "unknown"

Represents the pixel format of a depth image buffer.

In general, depth-* formats use actual depth sensors (like infra-red, time-of-flight or LiDAR), whereas disparity-* formats come from multiple constituent physical cameras and represents pixel shift between two or more cameras.

FormatDomainSampleBit depthLayout
depth-16-bitDepth[depth]16-bit FloatPlanar
depth-32-bitDepth[depth]32-bit FloatPlanar
depth-point-cloud-32-bitPointCloud[x, y, z, confidence]32-bit FloatInterleaved
disparity-16-bitDisparity[disparity]16-bit FloatPlanar
disparity-32-bitDisparity[disparity]32-bit FloatPlanar
unknown

On this page

No Headings