All Projects → cloud-annotations → Object Tracking Js

cloud-annotations / Object Tracking Js

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

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Object Tracking Js

Instatrack
Convert Instagram user ID to username & vice versa
Stars: ✭ 70 (-47.76%)
Mutual labels:  tracking
Online learning
Online Learning for Human Detection in 3D Point Clouds
Stars: ✭ 97 (-27.61%)
Mutual labels:  tracking
Hyperlandmark
Deep Learning Based Free Mobile Real-Time Face Landmark Detector. Contact:[email protected]
Stars: ✭ 1,528 (+1040.3%)
Mutual labels:  tracking
Vglist
A video game library tracking web app built in Rails and powered by Wikidata.
Stars: ✭ 78 (-41.79%)
Mutual labels:  tracking
1hosts
DNS filter-/blocklists | safe. private. clean. browsing!
Stars: ✭ 85 (-36.57%)
Mutual labels:  tracking
Jpdaf tracking
A tracker based on joint probabilistic data association filtering.
Stars: ✭ 107 (-20.15%)
Mutual labels:  tracking
Oblecto
Oblecto is a media server, which streams media you already own, and is designed to be at the heart of your entertainment experience. It runs on your home server to index and analyze your media such as Movies and TV Shows and presents them in an interface tailored for your media consupmtion needs.
Stars: ✭ 67 (-50%)
Mutual labels:  tracking
Daybydaycrm
DaybydayCRM an open-source CRM, to help you keep track of your daily workflow.
Stars: ✭ 1,856 (+1285.07%)
Mutual labels:  tracking
Awesome Quantified Self
📊 Websites, Resources, Devices, Wearables, Applications, and Platforms for Self Tracking
Stars: ✭ 1,315 (+881.34%)
Mutual labels:  tracking
Pytracking
Visual tracking library based on PyTorch.
Stars: ✭ 1,843 (+1275.37%)
Mutual labels:  tracking
Odas web
A desktop visualization GUI for the ODAS library
Stars: ✭ 78 (-41.79%)
Mutual labels:  tracking
Orgstat
Statistics visualizer for org-mode
Stars: ✭ 83 (-38.06%)
Mutual labels:  tracking
Iros20 6d Pose Tracking
[IROS 2020] se(3)-TrackNet: Data-driven 6D Pose Tracking by Calibrating Image Residuals in Synthetic Domains
Stars: ✭ 113 (-15.67%)
Mutual labels:  tracking
Memtrack
Code for "Learning Dynamic Memory Networks for Object Tracking"
Stars: ✭ 74 (-44.78%)
Mutual labels:  tracking
Pytracking
Email open and click tracking library
Stars: ✭ 127 (-5.22%)
Mutual labels:  tracking
Siamvgg
SiamVGG: Visual Tracking with Deeper Siamese Networks
Stars: ✭ 69 (-48.51%)
Mutual labels:  tracking
Hackvault
A container repository for my public web hacks!
Stars: ✭ 1,364 (+917.91%)
Mutual labels:  tracking
Covariants
Real-time updates and information about key SARS-CoV-2 variants, plus the scripts that generate this information.
Stars: ✭ 134 (+0%)
Mutual labels:  tracking
Towards Realtime Mot
Joint Detection and Embedding for fast multi-object tracking
Stars: ✭ 1,948 (+1353.73%)
Mutual labels:  tracking
Block
Let's make an annoyance free, better open internet, altogether!
Stars: ✭ 1,849 (+1279.85%)
Mutual labels:  tracking

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 @cloud-annotations/object-tracking

Usage

import objectTracker from '@cloud-annotations/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/@cloud-annotations/object-tracking"></script>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].