How do I make a 21x21 array from the center of a 200x150 array?

2 次查看(过去 30 天)
grayscale.png
This image is 200x150. How do I create a 21x21 array from the center of the 200x150 array?

回答(2 个)

Star Strider
Star Strider 2019-10-14
编辑:Star Strider 2019-10-14
I called your image ‘parrot grayscale.png’.
I = imread('parrot grayscale.png');
[r,c] = size(I);
sr = fix((r-21)/2);
sc = fix((c-21)/2);
I2121 = I(sr:sr+20, sc:sc+20);
figure
imshow(I2121)
EDIT — Corrected typographical error. Code otherwise unchanged.

Fabio Freschi
Fabio Freschi 2019-10-14
% dimensions
n = 21; % rows
m = 21; % cols
% load image
A = imread('grayscale.png');
% find center coordinate
iCenter = round(size(A)/2);
% indices to save
iRow = iCenter(1)-floor(n/2)+(1:n);
jCol = iCenter(2)-floor(m/2)+(1:m);
% extraction
B = A(iRow,jCol);
% plot
figure
imshow(B)

类别

Help CenterFile Exchange 中查找有关 Geometric Transformation and Image Registration 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by