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 中计算 3D 互相关。有人知道我应该使用哪个功能吗?对于 2-D 互相关,它具有xcorr2,但我不知道是 3D。
xcorr2
相关性类似于卷积,除了不需要翻转关于原点的输入(但相关性需要取其中一个操作数的复共轭),因此对于 3D 实矩阵,您可以使用它convn(x3d,y3d(end:-1:1,end:-1:1,end:-1:1))来计算 3D 互相关。
convn(x3d,y3d(end:-1:1,end:-1:1,end:-1:1))