Coefficient computation for bicubic interpolation

5 visualizaciones (últimos 30 días)
mona
mona el 20 de Nov. de 2012
Dear Community Members,
Since bicubic interpolation for an image requires 16 coefficients which will eventually form the window with which we would convolve the sampled image, right. So my question is "how could I calculate these coefficients?". Do I have to get the matrix of the input image through matlab? If yes, how? Kindly don't suggest imread since it only shows how many rows and columns are present. If no, what is an exact way of computing the coefficients for bicubic interpolation?
Thanks in advance

Respuestas (1)

Matt J
Matt J el 20 de Nov. de 2012
Editada: Matt J el 20 de Nov. de 2012
Normally, you would use interp2, griddedInterpolant, or the spline command to do bicubic interpolation.
Only in very special cases, like if you are interpolating at gridded sample points, can the operation be formulated as a convolution, and even then, griddedInterpolant probably does this for you internally.
  18 comentarios
Matt J
Matt J el 21 de Nov. de 2012
Editada: Matt J el 21 de Nov. de 2012
My 2nd remark was referring to the factor-of-2 upsampling result, not the one that gave you an out-of-memory error.
Earlier, you said you thought that result looked distorted. If it looks distorted, the only thing to blame is either the data or the interpolation model.
mona
mona el 22 de Nov. de 2012
I believe so too, Thanks for help.

Iniciar sesión para comentar.

Categorías

Más información sobre Interpolation en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by