what wrong in my for loop?
信息
此问题已关闭。 请重新打开它进行编辑或回答。
显示 更早的评论
Sir, Please help, where I'm wrong in the following code. I got an error like this .. Subscripted assignment dimension mismatch.
Error in one (line 15) target(:,i)=img_size(:); Please help me sir..
imgData=imageSet(filename,'recursive')
count = numel(imgData)
for i=1:count
img=read(imgData(i),1);
img_size=imresize(img,[100 100]);
img_size=double(img_size);
target(:,i)=img_size(:);
end
5 个评论
Torsten
2018-1-29
"img_size" is a two-dimensional array. But in the last line within the for-loop, you treat it as one-dimensional.
Best wishes
Torsten.
Maruthi Maruthi
2018-1-29
Torsten
2018-1-29
target{i} = img_size ?
Best wishes
Torsten.
Maruthi Maruthi
2018-1-29
Maruthi Maruthi
2018-1-29
回答(0 个)
此问题已关闭。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!