dlib-correlation-tracker-js
TypeScript icon, indicating that this package has built-in type declarations

1.2.1 • Public • Published

dlib-correlation-tracker-js

Track moving objects in videos in Javascript using dlib's correlation tracker. These bindings compile the module using emscripten, providing the raw interface as well as a utility class to simplify working with an HTML <video> element.

Usage

$ npm install --save dlib-correlation-tracker-js

To use the DOM interface, create a new VideoCorrelationTracker with an HTMLVideoElement and the position of the object to track. A new prediction can be generated based on the video's current frame at any time by referring to tracker.prediction. The tracker can be fine-tuned by updating it with a user-specified rect using tracker.update(rect).

import { VideoCorrelationTracker } from 'dlib-correlation-tracker';
 
// begin by passing a video and a bounding box of what you want to track
const tracker = new VideoCorrelationTracker(document.querySelector('video'), { x, y, width, height });
 
// update the tracker with a specified rect when the video updates
tracker.update({ x, y, width, height });
 
// get the tracker's prediction for the current video frame
const { x, y, width, height } = tracker.prediction;
 
// if the video dimensions change, memory must be manually re-allocated
function onVideoDimensionsChange(video) {
  VideoCorrelationTracker.reserveMemory(video);
}
 
// memory must also be manually freed when done!
function onUnload() {
  VideoCorrelationTracker.freeMemory();
}

Dependents (0)

Package Sidebar

Install

npm i dlib-correlation-tracker-js

Weekly Downloads

2

Version

1.2.1

License

MIT

Unpacked Size

1.57 MB

Total Files

21

Last publish

Collaborators

  • kremonte