Motion Estimation with Optical Flow
blog.nanonets.com
Motion Estimation with Optical Flow
1–10 of 24 posts
Re: Motion Estimation with Optical Flow
#2Most real-time video processing systems/techniques only address relationships of objects within the same frame, disregarding time information. Optical flow accounts for this temporal relationship between frames. Advances in Optical Flow have changed the game in Object Tracking and Human Activity Recognition in videos.
This article explains the fundamentals and gives you the code to try it out for yourself.
Re: Motion Estimation with Optical Flow
#3Does anyone have a hint on what technique they might have used?
Re: Motion Estimation with Optical Flow
#4I've always felt that it was a missed opportunity to tap into temporal information for entity recognition. I'm excited to see this take hold!
Re: Motion Estimation with Optical Flow
#5Had a page about it on robots.net, but it seems to be down now
Re: Motion Estimation with Optical Flow
#6I hit upon a similar idea back in about 2000... the key at the time was video encoding hardware that was designed to incorporate MPEG compression. Pulling motion vectors from the encoded stream could have given realtime optical flow way back then. Unfortunately I was nowhere good enough as a programmer to take advantage of it for real projects. A team at MIT had a paper about this that I was able to find. Had a page…
Re: Motion Estimation with Optical Flow
#7Back in 2008 there was an amazing demo of realtime dense optical flow on a GPU[0] but all the links are dead now. I've searched hard for another comparable implementation since then but had no luck. Does anyone have a hint on what technique they might have used? [0] https://www.youtube.com/watch?v=ssINeWRb58M
Maybe this one from 2007: https://www-pequan.lip6.fr/~bereziat/cours/master/vision/pap...
Re: Motion Estimation with Optical Flow
#8Back in 2008 there was an amazing demo of realtime dense optical flow on a GPU[0] but all the links are dead now. I've searched hard for another comparable implementation since then but had no luck. Does anyone have a hint on what technique they might have used? [0] https://www.youtube.com/watch?v=ssINeWRb58M
A lot of that group's publications are listed here, many involving optical flow: http://web.archive.org/web/20161014025823/http://gpu4vision.... Maybe this one from 2007: https://www-pequan.lip6.fr/~bereziat/cours/master/vision/pap...
Re: Motion Estimation with Optical Flow
#9Re: Motion Estimation with Optical Flow
#10I hit upon a similar idea back in about 2000... the key at the time was video encoding hardware that was designed to incorporate MPEG compression. Pulling motion vectors from the encoded stream could have given realtime optical flow way back then. Unfortunately I was nowhere good enough as a programmer to take advantage of it for real projects. A team at MIT had a paper about this that I was able to find. Had a page…
We're doing this with H.264 at work. Pretty useful since we need to generate the encoded stream anyway, so now we get motion estimation for free.