如何在Matlab中制作彩色图像数组?

发布于 2024-10-31 15:16:47 字数 86 浏览 0 评论 0原文

我想在 Matlab 中制作一组彩色图像,这样我就可以做到 数组(i) 并得到彩色图像。除了制作 3D 数组数组之外,还有其他方法可以做到这一点吗?

I want to make an array of color images in Matlab so I can do
thearray(i)
and get a color image. Is there a way to do this other than making an array of 3D arrays?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

您可以使用元胞数组

images = cell(100,1); 
% ... f.e. in a for loop: 
images{i} = rand(100,200);
% to query the image (2D array) again: 
myImage = images{n}; 

You can use cell arrays:

images = cell(100,1); 
% ... f.e. in a for loop: 
images{i} = rand(100,200);
% to query the image (2D array) again: 
myImage = images{n}; 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文