フィルターのクリア

Problem with imresize function

4 ビュー (過去 30 日間)
Dani D
Dani D 2016 年 2 月 12 日
回答済み: Image Analyst 2016 年 2 月 12 日
Hello, I have problem with imresize :(
clear;
A=imread('dentist.jpg');
B=imread('gol.JPG');
imshow(A); pause(3);
imshow(B);pause(4);
B = imresize(A,size(B));
C = imadd(A,B);imshow(C);

採用された回答

Image Analyst
Image Analyst 2016 年 2 月 12 日
B is an RGB image, so size(B) is a 3 element array. When you pass in a 3 column vector or matrix into imresize, it expects it to be a colormap, not a size, and if it's a colormap it must be doubles in the range 0-1, not integers in the range of 0-thousands or whatever your size is.
You need to get the rows and columns by themselves. NEVER use size() like that on an image you read in with imread(). Why not? See this: http://blogs.mathworks.com/steve/2011/03/22/too-much-information-about-the-size-function/
The fix
[rowsB, columnsB, numberOfColorChannelsB] = size(B);
% Now resize A and overwrite the old B
B = imresize(A, [rows, columns]);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRed についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by