开发者

Creating a list of images in Matlab

开发者 https://www.devze.com 2023-02-22 03:05 出处:网络
I have a bunch of images of different resolution that I\'d like to keep in a list. Such that list(1) would be the first image, list(2) would be the second image, and so on.

I have a bunch of images of different resolution that I'd like to keep in a list.

Such that list(1) would be the first image, list(2) would be the second image, and so on.

I am using impyramid to create multiple resolution versio开发者_如何学Gons. Not sure how to do this.


The only real way to do this (because your images could have different dimensions) is to keep a cell array of them:

list{1} = im1;
list{2} = im2;
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号