本文介绍了图像稳定/对齐算法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从我在网上看到的,

You can try some simple approaches first, I've suggested some recently here: Video Stabilization with OpenCV

在您的情况下(没有平移,没有缩放,静态场景),相位相关可能已经足够且它相当容易(参见维基百科)。
如果我没记错的话,有几个可用于avisynth的视频稳定滤波器/插件使用相位相关 - 你可以先试用它们。

In your case (no pan, no zoom, static scene), phase-correlation might be already sufficient and it's quite easy (see e.g. wikipedia on that).If I recall correctly, there are several video stabilization filters/plug-ins available for avisynth that use phase-correlation - you can try them out first.

根据我的需要,我已经实现了一个简单的工具,它可以使SURF / Homography路线对齐多个图像(对齐图像,而不是视频)。您可能想尝试一下,看看这是否满足您的需求:(嘿,我希望代码仍在运行...... )

For my needs, I've implemented a simple tool that goes the SURF/Homography route to align several images (aligns images, not videos). You might want to try that out to see if this suffices your needs as well: http://web.archive.org/web/20101004234404/http://ioctl.eu/wiki/applications/ImageAlign (Heh, I hope that code still runs...)

这篇关于图像稳定/对齐算法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-15 01:28