node-object
v0.10.1
Published
Node.js Object Recognition based on Intel® RealSense™ technology
Downloads
8
Readme
Intel® RealSense™ technology with JavaScript API for Linux OS
node-object
: Node.js Object Recognition/Localization/Tracking algorithm module based on Intel® RealSense™ technology.
Please refer to Release Note for details of current release.
Install
Prepare environment and then execute the following command in shell:
npm install --save node-object
Examples
The following example shows the basic usage of this module. Before executing it, connect an Intel® RealSense™ Camera to your computer or developer board.
const objectModule = require('node-object');
objectModule.createObjectRecognizer().then(or => {
or.on('framecaptured', (evtData) => {
// A new frame was captured
});
or.on('frameprocessed', (evtData) => {
// A new frame was captured and processed
});
or.on('recognition', (evtData) => {
// A new frame was captured, processed and then recognized
console.log('New object recognized:', evtData);
});
// To control how the algorithm works
// Call method: or.setObjectRecognitionOptions();
or.start().then(() => {
console.log('Camera + algorithm started...');
});
});
Document
Please refer to the project document home page, and also the details page listed below: