How I can zero pad a 14*14 matrix to 682*577 dimension?
조회 수: 7 (최근 30일)
이전 댓글 표시
Hi,
I want to zero pad a matrix with 14*14 dimension to have 682*577 dimensions. I want to data be in center of the new matrix. How I can do it?
I used this
D = padarray(h,[334 281],0,'both');
but I get a matrix with 682*576 dimensions. What's wrong?
댓글 수: 3
Matt J
2021년 5월 9일
The dimensions seem fine, since
[334 281]*2+14
And, we can check right here and now that if h is not zero, it works:
D = padarray(ones(14),[334 281],0,'both');
imshow(D)
채택된 답변
Image Analyst
2021년 5월 9일
편집: Image Analyst
2021년 5월 9일
Try this trick
h = ones(14, 14); % Original matrix is 14 x 14
% Pad it out with 334 rows top and bottom,
% and 281 columns left and right.
D = padarray(h, [334, 281], 0, 'both');
whos D % Originally 682x576
% Not the size we want yet. We want 682x577
% Here comes the "trick" to expand out the lower right corner with zeros.
D(end, 577) = 0;
whos D % Now 682x577
% Alternatively you can call padarray() with the 'pre' and 'post' option if you want to use different amounts of padding on each side.
댓글 수: 4
Image Analyst
2021년 5월 9일
I don't know how that could be. That matrix is not padded with zeros at all.
Attach your h matrix in a .mat file with the paper clip icon.
save('answers.mat', 'h');
Also attach the actual code you used.
추가 답변 (1개)
Walter Roberson
2021년 5월 9일
but I get a matrix with 682*576 dimensions. What's wrong?
You started with a matrix with even dimension, 14 x 14. You used padarray() with 'both'. That puts the same amount of space on the left and right, so the number of columns is going to be N + 14 + N = (2*N) + 14 for some integer N. But that is always going to be an even number. Therefore you cannot use padarray() 'both' to turn an array with even dimension into an array with odd dimension in a single step.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!