图像拼接的相位相关(使用汉明窗)
我使用相位相关进行图像拼接,它为我的大部分测试数据提供了良好的结果。我只是缝合左右和上下图像对(仅移位) 但有一些奇怪的行为。 首先奇怪的坐标,我必须转换坐标
//if L-R
pt.x= src->width-maxloc.x;
pt.y= src->height-maxloc.y;
if(pt.y>(temp->height/2))
pt.y= -(maxloc.y+1);
//if T-B
pt.x= src->width-maxloc.x;
pt.y= src->height-maxloc.y;
if(pt.x>(temp->width/2))
pt.x= -(maxloc.x+1);
然后使用汉明窗似乎当我使用汉明窗进行左右拼接时它效果更好(即使对于糟糕的情况),但是如果我使用汉明窗进行上下拼接它效果会很差(即使在好的情况下)。 我认为我不需要将 LR 和 TB 的个别情况分开,我希望相位相关性只是给我全局最大值,但似乎在理解 FFT 或相位相关性方面存在一些错误。 这是我使用的代码 http://codepaste.ru/9415/
I use phase correlation for image stitching and it gives good results for most part of my test data. I just stitiching pairs of image left-right and top-bottom(only shift)
But there is some strange behaviour.
First strange coordinates, I must convert coordinates
//if L-R
pt.x= src->width-maxloc.x;
pt.y= src->height-maxloc.y;
if(pt.y>(temp->height/2))
pt.y= -(maxloc.y+1);
//if T-B
pt.x= src->width-maxloc.x;
pt.y= src->height-maxloc.y;
if(pt.x>(temp->width/2))
pt.x= -(maxloc.x+1);
Then usage of Hamming window it seems that when I use Hamming window for left-right stitching it works better(even for bad cases), but if I use Hamming window for top-bottom it works bad (even in good cases).
And I think I don't need to separate individual cases for L-R and T-B, I expect that phase correlation just give me the global maximum, but it seems that some mistakes in understanding of FFT or phase correlation.
here is the code that I use http://codepaste.ru/9415/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码有一个明显的错误:
请您显示您尝试注册的图像。
Your code has a glaring mistake:
Please can you show the images that you are trying to register.