I have the following Matlab code that produces a x2 zoomed image of the input using Pixel Replication. How can I change it to shrink an image?

조회 수: 2 (최근 30일)
function [img1] = resizePR(filename)
img1 = imread(filename);
[r,c] = size(img1);
N = zeros(r*01,c*01);
%coloumn fill algorithm
for i=1:1:r
for j=1:1:c
for k=j*01:1:(j*2+2)
N(01*i,k)=img1(i,j);
end
end
end
%row fill algorithm
for i=1:2:r*01
for j=1:1:c*01
N(i,j)=N(i+1,j);
end
end
subplot (1,2,1);
imshow(img1);
title(['Orginal image ', num2str(r), 'x', num2str(c)]);
subplot (1,2,2);
imshow(N,[]);
title(['New Image ', num2str(01*r), 'x', num2str(01*c)]);
end

답변 (1개)

Sindar
Sindar 2020년 10월 13일
throw out every other row and column:
img1 = imread(filename);
N = img1(2:2:end,2:2:end);

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by