필터 지우기
필터 지우기

I am trying enlarge an image using interpolation without using MATLAB commands, but my image isn't resizing properly.

조회 수: 1 (최근 30일)
This function interpolates the rows first and then the columns from the interpolated rows.
function [enl] = enlarge(image)
img = imread(image);
img = double(img);
[m,n] = size(img);
% enl = zeros(m,n);
for i = 1:1:m
for j = 1:2:n-1
enl(i,j+1) = (img(i,j)+img(i,j+1))/2;
end
end
for i = 1:2:m-1
for j = 1:1:n
enl(i+1,j) = (img(i,j)+img(i+1,j))/2;
end
end
imshow(enl)
imwrite(enl, 'enl.gif')
end

채택된 답변

Walter Roberson
Walter Roberson 2013년 10월 24일
You are interpolating in one direction, but then you are ignoring the results of that when you interpolate in the other direction. Both times you overwrite the matrix en1 with values computed solely from img.

추가 답변 (2개)

Image Analyst
Image Analyst 2013년 10월 24일
Why not just imresize?

Dingbang Liang
Dingbang Liang 2018년 4월 30일
i tried this one, but it doesnt work. error is saying unusage of the first column "image", how to solve it?
  댓글 수: 1
Image Analyst
Image Analyst 2018년 4월 30일
It doesn't say that. "unusage" is not even a word. Paste the actual error message, including the line of code and the line numbers and the actual error message, as well as your script. In other words, attach your script, and any image or data that needs to be read in by it, and paste back here the complete error message ( ALL the red text).

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by