Composing matrix from small matrices
이전 댓글 표시
Hi all,
I have a random matrix generated by a rand function. The matrix size is 60x60 (a small array). I want to resize this matrix up to 600 x 600 (let's call it big array). I want that every 10x10 pixels from the 'big array' was filled by a corresponding pixel from a small array. For example pixels (1:10, 1:10) from a big array would have a '1' if the small_array(1,1) equals '1'.
How to do that? I tried to treat this array as an image and use imresize funtion, but it gives blurred image. I also tried following code, but there is something missing and I dont know what it is exactly.
size = 60;
Phi = rand(size,size)>0.5;
BigPhi = zeros(600,600);
for i=1:60
n=(i-1)*10
i
if i==1
BigPhi(i:(i*10),i:(i*10))=Phi(i,i);
end;
if i>1
BigPhi((i-1)*10:(i*10),(i-1)*10:(i*10))=Phi(i,i);
end
end
I will appreciate any help.
채택된 답변
추가 답변 (4개)
Ryan
2012년 6월 2일
clear m n o p
% Generate matrices
sizeA = 60;
fill_size = 10;
Phi = rand(size,size)>0.5;
BigPhi = zeros(600,600);
% Define BigPhi position counters
o = 1;
p = 1;
%Fill BigPhi
for m = 1:sizeA
for n = 1:sizeA
BigPhi(p:m*fill_size,o:n*fill_size) = repmat(Phi(m,n),[fill_size fill_size]);
p = p + fill_size;
end
o = o + fill_size;
end
I don't have Matlab on this computer to test it, but I believe this should do what you're asking for. The m and n counters keep track of your position in Phi so you can pull out the appropriate data and also dictate the end range of where you will stop filling BigPhi with that value. The o and p counters provide a way to keep track of where to start filling (1,11,21, etc).
B = repmat(A,[m n]) creates a larger m*n matrix, B, by repeating A.
댓글 수: 1
Ryan
2012년 6월 2일
Go with Image Analyst answer. Much quicker than mine.
bikekowal Marcin Kowalski
2012년 6월 2일
댓글 수: 3
Ryan
2012년 6월 4일
Ahhh I believe that the code is trying to access "fill_size*m" extra members to fill BigPhi... have you tried Image Analyst's way? If you eliminate "BigPhi = Zeros(600,600)" then this should work.
perhaps try the loops set to 1:(sizeA-1) ? Maybe set it to BigPhi = Zeros(610,610) to preallocate?
I do not currently have Matlab at my disposal to test this.
bikekowal Marcin Kowalski
2012년 6월 4일
Ryan
2012년 6월 4일
I took a quick look at it and fixed the first bug, but ran into another. The skeleton is there if you'd like to debug and figure out where in the algebra it is getting screwed up, but I'd suggest trying what Image Analyst did. I don't have the time to try to fix it.
Walter Roberson
2012년 6월 4일
I would have to test to be sure this is exactly right, but I believe you can use
BigImage = kron(SmallImage, eye(10));
Be sure to test that this returns the correct class() for your purposes; you might need
BigImage = cast( kron(SmallImage, eye(10)), class(SmallImage) );
댓글 수: 4
bikekowal Marcin Kowalski
2012년 6월 4일
Andrei Bobrov
2012년 6월 4일
BigImage = kron(SmallImage, ones(10));
Walter Roberson
2012년 6월 4일
That makes sense, andrei.
bikekowal Marcin Kowalski
2012년 6월 5일
카테고리
도움말 센터 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!