could you tell me paper related to 'v5cubic'?
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
There is a question when using the 'imresize' function to resize an image in one direction.
I want to scale an image with a size of [1000 200] to [1000 800] using 'bicubic' method.
I found that the process is the same as' interp1 (X, V, Xp, 'v5cubic') except for the boundary area.
However, when using the 'bucibic' method, I do not know how the 'imresize' function fills some values near the bounding area.
Can you tell me the 'imresize' process or the 'v5cubic' kernel?
Thank you for reading.
Have a nice day.
0 commentaires
Réponses (1)
Sruthi Geetha
le 17 Juil 2017
For bicubic interpolation, the output pixel value is a weighted average of pixels in the nearest 4-by-4 neighborhood. Bicubic interpolation can produce pixel values outside the original range. The following link describes how "imresize" function in MATLAB works: https://www.mathworks.com/help/images/ref/imresize.html?searchHighlight=imresize&s_tid=doc_srchtitle "v5cubic" is a cubic convolution interpolation method. The below link shows how the "interp1" function in MATLAB works: https://www.mathworks.com/help/matlab/ref/interp1.html?searchHighlight=interp1&s_tid=doc_srchtitle
0 commentaires
Voir également
Catégories
En savoir plus sur 최근접이웃 dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!