pad matrix to a particular size
조회 수: 140(최근 30일)
표시 이전 댓글
I have a matrix M of size m x n
m and n may or may not be equal - M can be rectangular or square matrix - where m and n are less than 150,
I wanted to resize M to 150 x 150 by padding border with zeros, such that the m x n will come in the center
M_resized = padarray(M,[x y],0,'both');
how to compute value for x and y such that i can use the same line of code for any matrix,
or is there any another way to do?
댓글 수: 0
채택된 답변
Image Analyst
2021년 5월 13일
You can use the 'pre' and 'post' options to pad each side with the desired number of zeros.
Or use this "trick"
g = ones(150, 150); % Original matrix is 150 x 150
[rows, columns] = size(g);
m = 153
n = 152;
rowsPre = floor((m - rows)/2)
collsPre = floor((n - columns)/2)
% Pad it out with 334 rows top and bottom,
% and 281 columns left and right.
P = padarray(g, [rowsPre, collsPre], 0, 'both');
whos P % Originally 152x152 padded with zeros all around.
% Not the size we want yet. We want 153x152
% Here comes the "trick" to expand out the lower right corner with zeros.
P(m, n) = 0;
whos P % Now 153 x 152
댓글 수: 3
Hamza Mehmood
2022년 8월 27일
Yeah that worked and results prove that padding the ROI to the feature activation dimension may not be the best way to compare using ssim.
Ill be instead reversing the process, cropping the 3D feature activation matrix down to 25x25x25 to ROI 3D coordinates and then compare using ssim.
Thank You !
Much Appreciated.
추가 답변(1개)
David Hill
2021년 5월 13일
assuming m and n are both even.
M_resized=padarray(M,[(150-size(M,1))/2 (150-size(M,2))/2],0,'both');
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!