DepthMap.State


public final class DepthMap.State


Contains the current state of depth tracking

Summary

Public methods

boolean
equals(Object other)
final int

The height of the depth map.

final ByteBuffer

Confidence for each pixel in rawDepthMap, with 0 representing the lowest confidence and 255 representing the highest confidence.

final FloatBuffer

Buffer of size width x height representing raw depth in meters from the image plane.

final ByteBuffer

Confidence for each pixel in smoothDepthMap, with 0 representing the lowest confidence and 255 representing the highest confidence.

final FloatBuffer

Buffer of size width x height representing smooth depth in meters from the image plane.

final int

The width of the depth map.

int

Public methods

equals

public boolean equals(Object other)

getHeight

Added in 1.0.0-alpha06
public final int getHeight()

The height of the depth map.

getRawConfidenceMap

Added in 1.0.0-alpha06
public final ByteBuffer getRawConfidenceMap()

Confidence for each pixel in rawDepthMap, with 0 representing the lowest confidence and 255 representing the highest confidence.

getRawDepthMap

Added in 1.0.0-alpha06
public final FloatBuffer getRawDepthMap()

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.

getSmoothConfidenceMap

Added in 1.0.0-alpha06
public final ByteBuffer getSmoothConfidenceMap()

Confidence for each pixel in smoothDepthMap, with 0 representing the lowest confidence and 255 representing the highest confidence.

getSmoothDepthMap

Added in 1.0.0-alpha06
public final FloatBuffer getSmoothDepthMap()

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.

getWidth

Added in 1.0.0-alpha06
public final int getWidth()

The width of the depth map.

hashCode

public int hashCode()