How to use the startListening function from bindings

Find comprehensive JavaScript bindings.startListening code examples handpicked from public code repositorys.

62
63
64
65
66
67
68
69
70
71
 * @param {number} options.sensor_orientation (KinectAzure.K4ABT_SENSOR_ORIENTATION_DEFAULT, KinectAzure.K4ABT_SENSOR_ORIENTATION_CLOCKWISE90, KinectAzure.K4ABT_SENSOR_ORIENTATION_COUNTERCLOCKWISE90 or KinectAzure.K4ABT_SENSOR_ORIENTATION_FLIP180)
 * @param {number} options.processing_mode (KinectAzure.K4ABT_TRACKER_PROCESSING_MODE_GPU or KinectAzure.K4ABT_TRACKER_PROCESSING_MODE_CPU)
 * @param {number} options.gpu_device_id The id of the GPU to use
 */
createTracker(options = {}) { return kinect.createTracker(options) }
startListening(cb) { return kinect.startListening(cb)}

stopListening(cb) {
  return new Promise((resolve, reject) => {
    kinect.stopListening((err, result) => {
fork icon20
star icon0
watch icon1

+ 11 other calls in file

18
19
20
21
22
23
24
25
26
27
 * @param {number} options.depth_mode The depth mode
 * @param {number} options.point_cloud_mode The point cloud mode
 */
startCameras(options) { return kinect.startCameras(options) }
createTracker() { return kinect.createTracker() }
startListening(cb) { return kinect.startListening(cb) }

depth2DtoDepth3D(point) { return kinect.depth2DtoDepth3D(point) }

stopListening() { return kinect.stopListening() }
fork icon20
star icon0
watch icon0

+ 5 other calls in file

Other functions in bindings

Sorted by popularity

function icon

bindings.createKey is the most popular function in bindings (8616 examples)