imresize is creating negative numbers from a matrix?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Real Name
am 28 Jun. 2018
Beantwortet: Walter Roberson
am 28 Jun. 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 Kommentare
Akzeptierte Antwort
Walter Roberson
am 28 Jun. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!