Why does this error happen?

1 回表示 (過去 30 日間)
Ayethiri Zinko
Ayethiri Zinko 2020 年 3 月 1 日
回答済み: Guillaume 2020 年 3 月 1 日
load NewTemplates
snap=imread('image1.png');
snap=imresize(snap,[42 24]);
rec=[ ];
for n=1:length(NewTemplates)
cor=corr2(NewTemplates{1,n},snap);
rec=[rec cor];
end
error-> ??? Cell contents reference from a non-cell array
object.
Error in ==> Letter_detection at 9
cor=corr2(NewTemplates{1,n},snap);

回答 (1 件)

Guillaume
Guillaume 2020 年 3 月 1 日
Your code expects that NewTemplates is a cell array (or an object that supports {} indexing). It isn't. Presumably, NewTemplates is popped into existence by your load NewTemplates, so you need to investigate that file to see what it contains.
What is
class(newTemplates)

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by