MATLAB(图像处理)

发布于 2024-12-08 19:10:56 字数 84 浏览 0 评论 0原文

如何在循环中存储多个图像,例如:image_1,image_2。其中 1,2 不固定,它们取决于循环。

How can I store multiple image in a loop for example: image_1,image_2. Where 1,2 are not fixed, they depend on the loop.

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

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

发布评论

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

评论(2

苹果你个爱泡泡 2024-12-15 19:10:56

如果您确实想这样做,请使用eval命令。

eval(sprintf('image_%i = thisimage;', i))

但请注意 eval 被认为是有害的。你最好使用像元胞数组这样的东西。

images{i} = thisimage;

或者,如果它们只是图形句柄,则使用 @sta 的建议存储在常规数组中:

images(i) = imageHandle;

If you really want to do it like this then use the eval command.

eval(sprintf('image_%i = thisimage;', i))

But beware that eval considered harmful. You'd be better off with something like a cell array.

images{i} = thisimage;

Or, if they're just graphics handles, then use @sta 's suggestion to store in a regular array:

images(i) = imageHandle;
空心↖ 2024-12-15 19:10:56

图形/轴等的句柄应该是可以附加到向量的浮点数。循环结束后,您可以通过此句柄访问图形。

The handles for figures/axes etc. should be floats that you can append to a vector. After the loop you can access the figure via this handle.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文