Get the value of the depth channel at the given pixel coordinates x, y.
x
y
num getDepth(int x, int y) => depth != null ? depth!.isFloat ? depth!.getFloat(x, y) : depth!.getInt(x, y) : 0;