MATLAB: Imresize is creating negative numbers from a matrix

imageimage processingImage Processing Toolboximresize

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?

Best Answer

"Note: Bicubic interpolation can produce pixel values outside the original range."
Related Question