Filter löschen
Filter löschen

What is the meaning of interpolating of an image. How to interpolate

3 Ansichten (letzte 30 Tage)
Hi, Upto my knowledge, I thought that interpolate is to find the intermediate value from 2 known values.
How to relate interpolation with images. What does it mean technically.
Regards, Siva

Antworten (1)

Matt J
Matt J am 3 Okt. 2012
Bearbeitet: Matt J am 3 Okt. 2012
In the case of images, it means to estimate an intermediate value between the neighbors of a given point. For example, in the case of bilinear interpolation (the default of MATLAB's interp2 routines), the 2x2 group of pixels around a point are averaged, e.g.
>> Image=[1 2; 3 4];
>> interp2(Image,1.5,1.5)
ans =
2.5000

Kategorien

Mehr zu Interpolation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by