Error: subscripted assignment dimension mismatch for loop
显示 更早的评论
Hello,
The error I get is :
for i = 1:numTraining mhi_fig = sprintf('data%d.png', i); img(i,:)=imread(mhi_fig); end Why does this happen? and what is the solution?
回答(1 个)
Thorsten
2015-9-16
The error occurs because you try to assign an image (2D) to a row (1D) img(i,:).
You can use
img{i} = imread(mhi_fig);
or, if the images have all the same size
img(:,:,i) = imread(mhi_fig); % for gray scale images
img(:,:,:,i) = imread(mhi_fig); % for color images
类别
在 帮助中心 和 File Exchange 中查找有关 Computer Vision Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!