DepthMap.State


class DepthMap.State


Contains the current state of depth tracking.

Summary

Public functions

open operator Boolean
equals(other: Any?)
open Int

Public properties

Int

the height of the depth map

ByteBuffer?

a buffer of confidence values for each pixel in rawDepthMap, with 0 representing the lowest confidence and 255 representing the highest confidence

FloatBuffer?

a buffer of size width x height representing raw depth in meters from the image plane, with both row and pixel stride equal to 0

ByteBuffer?

a buffer of confidence values for each pixel in smoothDepthMap, with 0 representing the lowest confidence and 255 representing the highest confidence

FloatBuffer?

a buffer of size width x height representing smooth depth in meters from the image plane, with both row and pixel stride equal to 0

Int

the width of the depth map

Public functions

equals

open operator fun equals(other: Any?): Boolean

hashCode

open fun hashCode(): Int

Public properties

height

Added in 1.0.0-alpha12
val heightInt

the height of the depth map

rawConfidenceMap

Added in 1.0.0-alpha12
val rawConfidenceMapByteBuffer?

a buffer of confidence values for each pixel in rawDepthMap, with 0 representing the lowest confidence and 255 representing the highest confidence

rawDepthMap

Added in 1.0.0-alpha12
val rawDepthMapFloatBuffer?

a buffer of size width x height representing raw depth in meters from the image plane, with both row and pixel stride equal to 0

smoothConfidenceMap

Added in 1.0.0-alpha12
val smoothConfidenceMapByteBuffer?

a buffer of confidence values for each pixel in smoothDepthMap, with 0 representing the lowest confidence and 255 representing the highest confidence

smoothDepthMap

Added in 1.0.0-alpha12
val smoothDepthMapFloatBuffer?

a buffer of size width x height representing smooth depth in meters from the image plane, with both row and pixel stride equal to 0

width

Added in 1.0.0-alpha12
val widthInt

the width of the depth map