2D convolution in in Matlab.
Ältere Kommentare anzeigen
I = imread ("lena.jpg");
%imshow(I);
K = I;
C = conv2(I, K);
imshow(C);

But, my output is blank:

What could be the possible reason?
And, how can I obtain the expected output?
Akzeptierte Antwort
Weitere Antworten (1)
Matt J
am 10 Jul. 2018
I = im2double( rgb2gray( imread("lena.jpg") ) );
1 Kommentar
Ba Ba Black Sheep!
am 10 Jul. 2018
Kategorien
Mehr zu Images finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!