Error using corr function while finding the correlation of image in matlab
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Walter Roberson
am 5 Okt. 2011
It seems unlikely that that is complete and exact error message. Please copy and paste the complete error traceback.
Akzeptierte Antwort
Jan
am 5 Okt. 2011
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
Weitere Antworten (1)
Image Analyst
am 5 Okt. 2011
You probably want normxcorr2(), or less likely xcorr2(). You're trying to roll your own and messing up.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Image Segmentation and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!