DepthMap.State
class DepthMap.State
Contains the current state of depth tracking
Summary
Public properties |
|
|---|---|
Int |
The height of the depth map. |
ByteBuffer? |
Confidence for each pixel in |
FloatBuffer? |
Buffer of size width x height representing raw depth in meters from the image plane. |
ByteBuffer? |
Confidence for each pixel in |
FloatBuffer? |
Buffer of size width x height representing smooth depth in meters from the image plane. |
Int |
The width of the depth map. |
Public functions
Public properties
rawConfidenceMap
val rawConfidenceMap: ByteBuffer?
Confidence for each pixel in rawDepthMap, with 0 representing the lowest confidence and 255 representing the highest confidence.
rawDepthMap
val rawDepthMap: FloatBuffer?
Buffer of size width x height representing raw depth in meters from the image plane. The row and pixel stride of the buffer are both zero.
smoothConfidenceMap
val smoothConfidenceMap: ByteBuffer?
Confidence for each pixel in smoothDepthMap, with 0 representing the lowest confidence and 255 representing the highest confidence.
smoothDepthMap
val smoothDepthMap: FloatBuffer?
Buffer of size width x height representing smooth depth in meters from the image plane. The row and pixel stride of the buffer are both zero.