我建立了一个名为N的1 * 5单元,需要将图像(img)矩阵复制到其中的每个条目中,该怎么办?这是我想出的,但是没有用... 我正在尝试避免for循环,因此我的代码会更快。
function newImgs = imresizenew(img,scale) %scale is an array contains the scaling factors to be upplied originaly an entry in a 16*1 cell
N = (cell(length(scale)-1,1))'; %scale is a 1*6 vector array
N(:,:) = mat2cell(img,size(img),1); %Now every entry in N must contain img, but it fails
newImgs =cellfun(@imresize,N,scale,'UniformOutput', false); %newImgs must contain the new resized imgs
end
答案 0 :(得分:0)
根据我对您的问题的理解,并在循环部分上同意Cris Luengo的意见,这就是我的建议。我认为scale(1) = 1
之类的东西是因为您初始化了N = (cell(length(scale) - 1, 1))'
,所以我想scale
中的值之一并不重要。
function newImgs = imresizenew(img, scale)
% Initialize cell array.
newImgs = cell(numel(scale) - 1, 1);
% Avoid copying of img and using cellfun by directly filling
% newImgs with properly resized images.
for k = 1:numel(newImgs)
newImgs(k) = imresize(img, scale(k + 1));
end
end
一个小的测试脚本:
% Input
img = rand(600);
scale = [1, 1.23, 1.04, 0.84, 0.5, 0.1];
% Call own function.
newImgs = imresizenew(img, scale);
% Output dimensions.
for k = 1:numel(newImgs)
size(newImgs{k})
end
输出:
ans =
738 738
ans =
624 624
ans =
504 504
ans =
300 300
ans =
60 60