Interpolation problem with interp2

Hi everyone!
I did some computations on a grayscale picture and I would like to interpolate some points in my matrix. My problem is that interp2 doesn't allow to do what I want to.
Let's say my matrix is im
im = [1 2 3; 4 nan 6; 7 8 9];
and when I do:
[colum row] = meshgrid(1:3,1:3);
colum_i = 2;
row_i = 2;
zi = interp2(colum, row, im, colum_i, row_i);
I would like that it interpoles the nan. Is there a way to redefine a point in the matrix instead of a point between the points of the matrix?
My picture is a 512x512 pixels and interp2 would be very useful and fast instead of computing for every point separately...
Thank you for yours answers.
Regards, D.

 採用された回答

Walter Roberson
Walter Roberson 2011 年 5 月 27 日

0 投票

I suggest you consider John d'Errico's MATLAB File Exchange contribution inpaint_nans

1 件のコメント

Jan
Jan 2011 年 5 月 27 日
Walter, you are typing faster than me - yesterday, today and tomorrow. It would increase the efficiency of my work, if a small icon appears in the question to show, that you are reading it currently - and will have answered it some seconds later.

サインインしてコメントする。

その他の回答 (2 件)

Jan
Jan 2011 年 5 月 27 日

1 投票

There are many tools for this task in the FEX: FEX:interpolate+nan

2 件のコメント

jothi lakshmi maniyan
jothi lakshmi maniyan 2016 年 10 月 13 日
hi i need bicubic interpolation matlab code fully pl help
Walter Roberson
Walter Roberson 2016 年 10 月 13 日
https://www.mathworks.com/matlabcentral/fileexchange/20342-image-interpolation--ba-interp2-

サインインしてコメントする。

D.
D. 2011 年 5 月 27 日

0 投票

Thank you guys very much for your help...!
Regards, D.

カテゴリ

ヘルプ センター および File ExchangeInterpolation についてさらに検索

質問済み:

D.
2011 年 5 月 27 日

コメント済み:

2016 年 10 月 13 日

Community Treasure Hunt

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

Start Hunting!

Translated by