Questions tagged [tracking.js]

The tracking.js library brings different computer vision algorithms and techniques into the browser environment. By using modern HTML5 specifications, it enable you to do real-time color tracking, face detection and much more with a lightweight core (~7 KB) and intuitive interface.

The tracking.js library brings different computer vision algorithms and techniques into the browser environment. By using modern HTML5 specifications, it enable you to do real-time color tracking, face detection and much more with a lightweight core (~7 KB) and intuitive interface.

Some of the Utilities and features that it provides are:

-Feature Detection: Provides an implementation of Features from Accelerated Segment Test for features detection. In other words it finds corners on parts of the image. Its faster than many other well-known feature extraction methods.

-Feature Descriptor: Provides an implementation of Binary Robust Independent Elementary Features. It uses binary strings as an efficient feature point descriptor. As a result, Brief is very fast both to build and to match, perfect for the web.

-Convolution: Convolution filters are very useful generic filters for image processing. The basic idea is that you take the weighed sum of a rectangle of pixels from the source image and use that as the output value. Convolution filters can be used for blurring, sharpening, embossing, edge detection and a whole bunch of other things.

-Integral Image: A summed area table is a data structure and algorithm for quickly and efficiently generating the sum of values in a rectangular subset of a grid. In the image processing domain, it is also known as an integral image.

-Sobel: Computes the vertical and horizontal gradients of the image and combines the computed images to find edges in the image.

-Viola Jones: The Viola–Jones object detection framework is the first object detection framework to provide competitive object detection rates in real-time.

You can install this using:

bower install tracking.js

For more info you can refer to its official website - https://trackingjs.com/

24 questions
15
votes
1 answer

How to obtain frames from react-native-camera in real time

I am using the react-native-camera component (https://github.com/lwansbrough/react-native-camera) in an application I am developing. Is there any way to obtain the individual frames from the video / camera feed such that I may perform processing in…
cyrusbehr
  • 1,100
  • 1
  • 12
  • 32
3
votes
1 answer

Track eye balls using tracking.js

I am working with a red eye remover effect with html5 canvas. I used tracking.js to track the eyes. Check the following code. Html
2
votes
1 answer

Vue.js Tracking.js

I'm trying to make use of the tracking.js library in my vueJS application. I've installed the package like so. npm install --save tracking I'm then defining the library in my main.js file import tracking from…
Dev.W
  • 2,340
  • 9
  • 38
  • 77
2
votes
0 answers

Webcam face detection + blur using tracking.js

I'm trying to alter a bit of code that uses js to detect and track faces in a live webcam feed. Original source: https://trackingjs.com/examples/face_camera.html Once the face is detected, I'm trying to add a filter that will obscure or blur either…
2
votes
0 answers

Angular JS and Tracking.js face detection

I am implementing one MEAN app and I would like to detect the faces from a photo by using this app. So externally, I tried and successfully implemented face detection by using tracking.js. Now I would like to integrate that implementation in MEAN…
2
votes
3 answers

Can't run very first tracking.js example on Chrome

I'm trying to get familiar with tracking.js, but when I try to run the very same example given on the project's page (http://trackingjs.com/docs.html#introduction), nothing happens. Google-chrome doesn't even shows the prompt asking if I want to…
Vinicius Silva
  • 57
  • 1
  • 2
  • 6
1
vote
1 answer

Task 'serve' is not in your gulpfile

I am trying to install trackingJs and I am setting up my environment but I get this error message: Task 'serve' is not in your gulpfile. I am struggling big time setting this up, if anyone has used this before and could advise me in detail how to…
user10629012
  • 309
  • 1
  • 4
  • 12
1
vote
0 answers

tracking.js works with sample image but not more complex data

I'm trying to use tracking.js for color detection. I'm testing the code locally, and can replicate the example results when using the sample image provided in the tracking.js live demo. I can also add a new color and get the tracker to identify the…
SOLO
  • 868
  • 9
  • 19
1
vote
2 answers

HighSpeed FullScreen JS Facial Detection

I am currently researching a front end live camera based facial detection solution. So far I have found 3 libraries that suit my needs…
eric MC
  • 766
  • 2
  • 10
  • 36
1
vote
2 answers

Detect a colour based on its RGB

I want to detect red and green objects from webcam. I am using this Trackingjs library. I think with the library, it will track the red, green and blue value of an object and detect the colour according to the built-in colour library in their…
phuwin
  • 3,130
  • 4
  • 26
  • 49
1
vote
1 answer

Adding auto capture on face detection using tracking.js

Need help on adding auto capture/snapshot on face detect. Using this example from tracking.js: https://github.com/eduardolundgren/tracking.js/blob/master/examples/face_camera.html http://trackingjs.com/examples/face_camera.html Any idea will be…
bash ishen
  • 99
  • 1
  • 2
  • 10
1
vote
1 answer

Unable to track eyes using tracking.js

I am creating a eye staring game. I have used meteorjs, trackingjs for tracking stuffs and peerjs for streaming. In the older version of trackingjs , eye detecting feature was already there but in the new version only the face detecting feature is…
Raaz
  • 1,669
  • 2
  • 24
  • 48
1
vote
1 answer

Integrate trackingjs with meteorjs

I am new to meteor. I am trying to build my test app with meteor and trackingjs. I have placed all the files of trackingjs into lib/tracking folder but it gives me a lot f errors like Your app is crashing. Here's the latest log. Errors prevented…
Raaz
  • 1,669
  • 2
  • 24
  • 48
1
vote
4 answers

Why is this Jsfiddle not working: tracking.js face detection example

I'm trying to get a JSFiddle example of http://trackingjs.com/examples/face_tag_friends.html working but the hover effect is not working as the website shows. Here's my JSFiddle: https://jsfiddle.net/lolptdr/25yqfyjo/6/ I had to use a proxy on…
jojo
  • 1,135
  • 1
  • 15
  • 35
0
votes
1 answer

Docker - Can't get user webcam: getUserMedia() no longer works on insecure origins

WHAT WORKS I created a simple Web Application in Flask that takes care of operating a simple return render_template("index.html") when the root node is accessed by a Web Browser. # app.py from flask import Flask, render_template app =…
Employee
  • 3,109
  • 5
  • 31
  • 50
1
2