imresize is creating negative numbers from a matrix?
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Real Name
le 28 Juin 2018
Réponse apportée : Walter Roberson
le 28 Juin 2018
I'm doing something like:
image = imread(img);
image = rgb2gray(image);
image = im2double(image);
image = imresize(image);
Throughout the code, except for the last line, every element in the image matrix remains > 0. So why is imresize throwing in negative numbers?
0 commentaires
Réponse acceptée
Walter Roberson
le 28 Juin 2018
Default interpolation method is bicubic https://www.mathworks.com/help/images/ref/imresize.html#buxswkh-1-method
"Note: Bicubic interpolation can produce pixel values outside the original range."
0 commentaires
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!