필터 지우기
필터 지우기

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

조회 수: 3 (최근 30일)
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

답변 (1개)

Matt J
Matt J 2012년 10월 3일
편집: Matt J 2012년 10월 3일
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

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by