imresize is creating negative numbers from a matrix?

9 views (last 30 days)
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?

Accepted Answer

Walter Roberson
Walter Roberson on 28 Jun 2018
"Note: Bicubic interpolation can produce pixel values outside the original range."

More Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!