怎样用matlab一次处理命名有规律的多幅图像?
发布网友
发布时间:2024-05-12 13:08
我来回答
共1个回答
热心网友
时间:2024-05-13 11:41
for i=1:10
name = ['bf_'+num2str(i)+'.bmp']
img= imread(name);
figure()
imshow(img)
end追问还是出错,
Untitled
错误使用 +
矩阵维度必须一致。
是什么意思?
追答name = ['bf_',num2str(i),'.bmp']
不需要用+