![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
node-moving-things-tracker
Advanced tools
Realtime tracker by detections wrote in javascript for node.js / browsers
node-moving-things-tracker is a javascript implementation of the "tracker by detections" for realtime multiple object tracking (MOT).
It takes in input a txt file (TODO change to json) generated by node-yolo and outputs a tracker.json
file that assigns unique IDs to the YOLO detections bbox.
The detections entry file could be generated by other neural network / algorithm than YOLO, it just needs to respects the format specified in #input blabla link
Detections input:
Tracker output:
Requires node.js , available as a npm module: http://npmjs.com/node-moving-things-tracker
# Install globaly to use as command line tool
npm install -g node-moving-things-tracker
# Install localy your node.js / javascript project
npm install --save node-moving-things-tracker
Command line usage
NOTE : for now customized for the use case of lab-beat-the-traffic
node-moving-things-tracker PATH_TO_YOLO_DETECTIONS.txt
# This will output a tracker.json file in the same folder containing the tracker data
As an external module
See usage in lab-traffic-cam
const Tracker = require('node-moving-things-tracker').Tracker;
Tracker.updateTrackedItemsWithNewFrame(detectionScaledOfThisFrame, currentFrame);
const trackerDataForThisFrame = Tracker.getJSONOfTrackedItems();
Detections Input
rawdetections.txt
{"frame":0,"detections":[{"x":699,"y":99,"w":32,"h":19,"prob":34,"name":"car"},{"x":285,"y":170,"w":40,"h":32,"prob":26,"name":"car"},{"x":259,"y":178,"w":75,"h":46,"prob":42,"name":"car"},{"x":39,"y":222,"w":91,"h":52,"prob":61,"name":"car"},{"x":148,"y":199,"w":123,"h":55,"prob":53,"name":"car"}]}
{"frame":1,"detections":[{"x":699,"y":99,"w":32,"h":19,"prob":31,"name":"car"},{"x":694,"y":116,"w":34,"h":23,"prob":25,"name":"car"},{"x":285,"y":170,"w":40,"h":32,"prob":27,"name":"car"},{"x":259,"y":178,"w":75,"h":46,"prob":42,"name":"car"},{"x":39,"y":222,"w":91,"h":52,"prob":61,"name":"car"},{"x":148,"y":199,"w":123,"h":55,"prob":52,"name":"car"}]}
Tracker Output
{
// Tracker data for each frame
"43": [
{
"id": "900e36a2-cbc7-427c-83a9-819d072391f0",
"idDisplay": 0,
"x": 628,
"y": 144,
"w": 48,
"h": 29,
"name": "car",
"isZombie": false,
"zombieOpacity": 1,
"appearFrame": 35,
"disappearFrame": null
},
{
"id": "38939c38-c977-40a9-ad6a-3bb916c37fa1",
"idDisplay": 1,
"x": 620,
"y": 154,
"w": 50,
"h": 35,
"name": "car",
"isZombie": false,
"zombieOpacity": 1,
"appearFrame": 43,
"disappearFrame": null
}
]
...
// General info about each tracked item
"general": [{
"id": "a706f0c1-db07-4f93-834a-43d18267b16e",
"idDisplay": 102,
"appearFrame": 1301,
"disappearFrame": 1302,
"disappearArea": {
"x": 512,
"y": 193
},
"nbActiveFrame": 1
},
{
"id": "374b9ffd-46ff-490e-b994-f78e17517414",
"idDisplay": 95,
"appearFrame": 1219,
"disappearFrame": 1315,
"disappearArea": {
"x": 21,
"y": 551
},
"nbActiveFrame": 96
}]
}
TODO
TODO
No params tweaking is possible via command-line for now, it is currently optimized for car tracking, and many improvements are still to be implemented.
FAQs
Tracker by detections in javascript for node.js / browsers
The npm package node-moving-things-tracker receives a total of 78 weekly downloads. As such, node-moving-things-tracker popularity was classified as not popular.
We found that node-moving-things-tracker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.