Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个尺寸不同的图像,我想比较那些使用相关性(在 MATLAB corr2 中),最大偏差度量如何做到这一点?
请帮帮我
这取决于,如果一个是另一种用途的缩小版本:
B = imresize(A, [numrows numcols])
所以它们的大小相同。
如果是那个比另一个大,只需填充图像:
B = padarray(A, padsize)
然后你就可以使用这些功能了。