Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open source implementations of video stabilization [closed]

I am looking to implement a filter-based O( n log n) algorithm for stabilization of amateur video.

I believe this would be a useful tool for projects such as Witness.org.

I've searched for such a thing, and have found Deshaker by Gunnar Thalin, and Youtube's built-in editor feature. These algorithms are not as efficient as I believe they could be.

Have I missed something? Are there other projects like this out there? Please let me know.

Thank you.

like image 797
Ali Avatar asked Jun 29 '11 02:06

Ali


1 Answers

Cinelerra has a built-in video stabilizer plug-in. It is difficult to master and does not correct the effects of a rolling shutter. Youtube's stabilizer is much easier to use.

The source code for the Cinelerra plugin is here:

Also have a look at avisynthtrackin and OpenCV and this optical flow library.

like image 166
Jason Avatar answered Sep 19 '22 15:09

Jason