Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Image stabilization library Objective-C / C / C++?

is there a decent image stabilization library (something around optical flow) out there that can give me a 3 dimensional transformation matrix to stabilize with?

I just want to stabilize a 10 frame sequence. A library with an Objective-C wrapper would be the best, but something deeper (C, C++) is more than okay.

Thanks in advance.

like image 848
Geri Borbás Avatar asked Oct 07 '11 08:10

Geri Borbás


1 Answers

OpenCV has a method for calculating Optical Flow... cvCalcOpticalFlowBM

Otherwise the following C++ code for MatLab might give you a start...

Optical Flow in MatLab

like image 162
Simon Lee Avatar answered Nov 15 '22 21:11

Simon Lee