Skip to content

front-lines-org/object-tracking-js

 
 

Repository files navigation

Object Tracking JavaScript SDK

NPM Version NPM Downloads

Demo

Edit cranky-keller-cp4ms

Simple object tracking with TensorFlow.js.

Just draw a box and track it as it moves across the video, no training required.

Installation

npm install @front-lines-org/object-tracking

Usage

import objectTracker from '@front-lines-org/object-tracking'

const frame1 = document.getElementById('img1')
const frame2 = document.getElementById('img2')
const frame3 = document.getElementById('img3')
//    ...
const frameN = document.getElementById('imgN')

const tracker = objectTracker.init(frame1, [x, y, width, height])
const box2 = await tracker.next(frame2)
const box3 = await tracker.next(frame3)
//    ...
const boxN = await tracker.next(frameN)

// box =>
[x, y, width, height]

Usage via Script Tag

<script src="https://cdn.jsdelivr.net/npm/@front-lines-org/object-tracking"></script>

About

Track an object as it moves in a video with no training

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%