image - 在matlab中找到两张非常相似的图片之间的角度

标签 image matlab image-processing video-processing matlab-cvst

嗨,我找到了两张相似(但不相同)的图片之间的角度 ?

the first picture

the second 我用过

hVideoSrc = vision.VideoFileReader(filename, 'ImageColorSpace', 'Intensity');

imgA = step(hVideoSrc); % Read first frame into imgA
imgB = step(hVideoSrc); % Read second frame into imgB

    figure; imshowpair(imgA, imgB, 'montage');
    title(['Frame A', repmat(' ',[1 70]), 'Frame B']);
figure; imshowpair(imgA,imgB,'ColorChannels','red-cyan');
title('Color composite (frame A = red, frame B = cyan)');

来自 http://www.mathworks.com/help/vision/examples/video-stabilization-using-point-feature-matching.html 但它没有帮助 任何人都有 idia

最佳答案

只是想指出,从 R2014a 开始,图像处理工具箱中存在与 Patrick 的建议非常相似的算法。它被命名为 imregcorr 并在对数极坐标域中使用相位相关。对于这个问题,这可能也很有效,我还没有尝试过。

http://www.mathworks.com/help/images/ref/imregcorr.html

http://adessowiki.fee.unicamp.br/media/Attachments/courseIA369O1S2011/Ex13/phasecorrelation5.pdf

关于image - 在matlab中找到两张非常相似的图片之间的角度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22894190/

相关文章:

java - 使用 Android 从图像中读取文本

html - 试图在缩略图悬停时显示大图像

android - 根据可用内存加载 GridLayout 图片

javascript - png在IE浏览器中的问题

javascript - 是否可以在页面其他部分加载后克隆图像而不加载?

matlab - 如何在 Matlab 中打开 DBase 文件 (.DBF)?

python - 拟合二维高斯总和,scipy.optimise.leastsq(Ans : Use curve_fit!)

arrays - R 与 MATLAB 中高维数据结构化的方法论

matlab - 在 MATLAB 中模拟 C++ 模板

android - Android:如何将图库中的图像加载到OpenCv Mat变量中?