Error using corr function while finding the correlation of image in matlab
2 ビュー (過去 30 日間)
古いコメントを表示
I Keep getting the same Error while finding the correlation of image in matlab using corr function ??? Attempted to access CORR.;ell. any help would be appreciated thanking you
2 件のコメント
Walter Roberson
2011 年 10 月 5 日
It seems unlikely that that is complete and exact error message. Please copy and paste the complete error traceback.
採用された回答
Jan
2011 年 10 月 5 日
The error message seems to be clear. The problem does not concern the CORR function, but accessing the variable CORR:
CORR{1}{d,1} is a [3x3] array, but you want to access the index [65,64]
You can use the debugger to find the cause of this problem:
dbstop if error
その他の回答 (1 件)
Image Analyst
2011 年 10 月 5 日
You probably want normxcorr2(), or less likely xcorr2(). You're trying to roll your own and messing up.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!