Node.js Object Recognition based on Intel® RealSense™ technology
npm install node-objectnode-object: Node.js Object Recognition/Localization/Tracking algorithm module based on Intel® RealSense™ technology.
Please refer to Release Note for details of current release.
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...');
});
});
``