怎样用matlab一次处理命名有规律的多幅图像?

2025-05-13 11:19:26
推荐回答(1个)
回答1:

for i=1:10
name = ['bf_'+num2str(i)+'.bmp']
img= imread(name);
figure()
imshow(img)
end