How to use the createTracker function from bindings
Find comprehensive JavaScript bindings.createTracker code examples handpicked from public code repositorys.
61 62 63 64 65 66 67 68 69 70
* @param {Object} options The configuration for the body tracker * @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) => {
20
0
1
+ 11 other calls in file
17 18 19 20 21 22 23 24 25
* @param {number} options.color_resolution The color resolution * @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) }
20
0
0
+ 5 other calls in file
bindings.createKey is the most popular function in bindings (8616 examples)