Image interpolation with a sample image

48 次查看(过去 30 天)
I am trying out image interpolation on Matlab, with the following sample image.
I'm not exactly sure why my code isn't working.
%Interpolation
figure
imagesc(V);
colormap gray;
axis image;
axis off;
title("Original");
grayImage = rgb2gray(V);
Vn = interp2(grayImage,3);
imagesc(Vn);
title("Modified");

回答(2 个)

Image Analyst
Image Analyst 2017-7-28
Try using imresize() instead of interp2().
  2 个评论
nika mong
nika mong 2020-5-28
Hello, dear ser, I have problems writing code, which method can increase the resolution of a sub-pixel offset image, can you help please

请先登录,再进行评论。


Vipresh Gangwal
Vipresh Gangwal 2017-7-28
编辑:Vipresh Gangwal 2017-7-28
what do you mean it is not working? Also there seems to be a lot of salt and pepper noise in your image . That might be impacting the interpolation.
There is an example on the interp2 doc page. Try replicating same steps for your data.
https://www.mathworks.com/help/matlab/ref/interp2.html
  2 个评论
MX Zhang
MX Zhang 2017-7-31
I did try the sample on the link. Here's my code:
figure
imagesc(cdata);
colormap gray;
axis image;
axis off;
title("Original");
%grayImage = rgb2gray(V);
%Vn = interp2(grayImage,3);
Vn = interp2(cdata);
imagesc(Vn);
title("Modified");
But I get an error when I perform it:
Error using .'
Transpose on ND array is not defined. Use PERMUTE instead.
Error in interp2 (line 96)
V = V.';
Error in Interpolation (line 14)
Vn = interp2(cdata);
Image Analyst
Image Analyst 2017-7-31
cdata is a color image, which is a 3-D image. You can't use interp2() on a color image.
Any reason why you didn't like my solution?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Red 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by