开发者

Creating a list of images in Matlab

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜