MOVERIO Pro Developer's Guide (Rev.1.4)
100
6.8.19.
onDepthMap
Function
The process executed is written during depth information acquisition.
Format
Parameter
Model name in/out Explanation
byte[] data
in
Depth information. VGA size, RAW 8 format,
300 K byte data.
Camera
camera
in
Camera service object
Return value
None.
Usage procedure
void onDepthMap(
byte[] data,
Camera camera
)
// App developer applies processing when acquiring depth information
private Camera.DepthCallback mDepthCB = new Camera.DepthCallback() {
@Override
public void onDepthMap(byte
data[], Camera camera) {
Log.d(TAG, "Save depth map");
synchronized (lockObject) {
saveDepthMap(data);
}
}
};
//Register the callback method at the optimal time
camera.setDepthCallback(mDepthCB);
Summary of Contents for Moverio Pro BT-2000
Page 7: ...MOVERIO Pro Developer s Guide Rev 1 4 1 1 Introduction ...
Page 12: ...MOVERIO Pro Developer s Guide Rev 1 4 6 2 Developing Apps ...
Page 30: ...MOVERIO Pro Developer s Guide Rev 1 4 24 3 Display control ...
Page 39: ...MOVERIO Pro Developer s Guide Rev 1 4 33 4 UI control ...
Page 47: ...MOVERIO Pro Developer s Guide Rev 1 4 41 5 Voice commands ...
Page 70: ...MOVERIO Pro Developer s Guide Rev 1 4 64 6 Camera control ...
Page 119: ...MOVERIO Pro Developer s Guide Rev 1 4 113 7 Sensor control ...
Page 127: ...MOVERIO Pro Developer s Guide Rev 1 4 121 8 Bluetooth BLE ...
Page 184: ...MOVERIO Pro Developer s Guide Rev 1 4 178 9 Power control ...
Page 187: ...MOVERIO Pro Developer s Guide Rev 1 4 181 10 Self diagnostic function ...
Page 191: ...MOVERIO Pro Developer s Guide Rev 1 4 185 11 GPS Assist ...
Page 202: ...MOVERIO Pro Developer s Guide Rev 1 4 196 Memo ...