Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
I want to create some simple method like -(CATransform3D)getStabilization3DTransformOfSomeImage:(UIImage*) someImage andSomeOtherImage:(UIImage*) otherImage; – Geri Oct 7 '11 at 8:17

1 Answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.