https://github.com/zackakil/google-cardboard-video-labeler
System of labelling data for "object tracking" machine learning.
https://github.com/zackakil/google-cardboard-video-labeler
google-cardboard labeling-tool machine-learning machine-vision vr
Last synced: 4 months ago
JSON representation
System of labelling data for "object tracking" machine learning.
- Host: GitHub
- URL: https://github.com/zackakil/google-cardboard-video-labeler
- Owner: ZackAkil
- Created: 2018-08-13T13:24:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-10T14:16:54.000Z (almost 7 years ago)
- Last Synced: 2025-06-17T23:04:03.699Z (4 months ago)
- Topics: google-cardboard, labeling-tool, machine-learning, machine-vision, vr
- Language: JavaScript
- Size: 26.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# google-cardboard-video-labeler
https://zackakil.github.io/google-cardboard-video-labeler/index.html
System of labelling data for "object tracking" machine learning.
## useful resources
- A-frame, as the VR framework https://aframe.io/
- raycaster, allows us to pin point where on an object the user is looking https://aframe.io/docs/0.8.0/components/raycaster.html#events_raycaster_intersected- lower down rayaster library
https://threejs.org/docs/#api/core/Raycaster- figure out how to get contious intersection data by clearing `intersectedEls` from raycaster on `raycaster-intersected` event:
```js
AFRAME.registerComponent('collider-check', {
dependencies: ['raycaster'],init: function () {
this.el.addEventListener('raycaster-intersected', function (event) {event.detail.el.components.raycaster.intersectedEls = [];
console.log(event.detail.intersection.point);
});
}
});
```
source info (raycaster code)
https://github.com/aframevr/aframe/blob/8809e7fd5eccd4c4ce76892f4a5673b911dfd60f/src/components/raycaster.js- video controls https://github.com/oscarmarinmiro/aframe-video-controls