2D convolution in in Matlab.
Mostra commenti meno recenti
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?
Risposta accettata
Più risposte (1)
Matt J
il 10 Lug 2018
I = im2double( rgb2gray( imread("lena.jpg") ) );
1 Commento
Ba Ba Black Sheep!
il 10 Lug 2018
Categorie
Scopri di più su Images in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!