图像稳定库 Objective-C / C / C++?
是否有一个像样的图像稳定库(围绕光流的东西)可以给我一个 3 维变换矩阵来稳定?
我只是想稳定 10 帧序列。带有 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OpenCV 有一种计算光流的方法... cvCalcOpticalFlowBM
否则,以下 MatLab 的 C++ 代码可能会给您一个开始...
MatLab 中的光流
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