TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Javascript motion tracking

43 点作者 middleman90大约 13 年前

2 条评论

tomp大约 13 年前
If I understand this correctly, this is not motion tracking <i>in Javascript</i>, rather the JavaScript just renders the picture on the video using precalculated data about the position of the corners...
评论 #3728635 未加载
评论 #3728796 未加载
评论 #3728634 未加载
nl大约 13 年前
Back in 2009 I did some work on augmented reality in the browser[1]. Back then there was no WebRTC, so I had to shim Flash to Canvas to get webcam images, and I implemented image tracking using a simple color tracking algorithm.<p>If this really is doing image tracking in JS (as tomp noted the explanation isn't clear) then I'm very impressed.<p>The previous state of the art was some great face-detection code I'd seen, but it is much slower than this.<p>[1] <a href="http://nicklothian.com/blog/2009/11/18/augmented-reality-virtual-keyboard-using-html-5-video/" rel="nofollow">http://nicklothian.com/blog/2009/11/18/augmented-reality-vir...</a><p>[2] <a href="http://liuliu.me/eyes/javascript-face-detection-explained/" rel="nofollow">http://liuliu.me/eyes/javascript-face-detection-explained/</a>, <a href="http://apprtc.appspot.com/html/face.html" rel="nofollow">http://apprtc.appspot.com/html/face.html</a>