imresize is creating negative numbers from a matrix?
6 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Walter Roberson
2018 年 6 月 28 日
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 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!