imresize is creating negative numbers from a matrix?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Real Name
el 28 de Jun. de 2018
Respondida: Walter Roberson
el 28 de Jun. de 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 comentarios
Respuesta aceptada
Walter Roberson
el 28 de Jun. de 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 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!