gpt4 book ai didi

image - 导入多个图像matlab

转载 作者:太空宇宙 更新时间:2023-11-03 20:31:37 25 4
gpt4 key购买 nike

我有一组 100 张连续命名的 jpg 图片,我想将它们加起来得到一张图片。我从here看到了答案, 但它不跟我一起跑,怎么回事?

代码如下:

im = imread('C:\Documents and Settings\1026175117_1.jpg');
for i = 2:10
im = imadd(im,imread(sprintf('C:\Documents and Settings\1026175117_%d.jpg',i)));
end
im = im/1000;
imshow(im,[]);

这是错误信息:

Error using ==> imread
Can't open file "C:" for reading;
you may not have read permission.

最佳答案

反斜杠是sprintf()的特殊字符,需要转义。使用“\\”而不是“\”或尝试以其他方式构建文件路径。 fullfile() 是一个很好的方法,因此您只需对文件名部分使用 sprintf。另请参阅 help sprintf

关于image - 导入多个图像matlab,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8003989/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com