2D convolution in in Matlab.
Afficher commentaires plus anciens
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?
Réponse acceptée
Plus de réponses (1)
Matt J
le 10 Juil 2018
I = im2double( rgb2gray( imread("lena.jpg") ) );
1 commentaire
Ba Ba Black Sheep!
le 10 Juil 2018
Catégories
En savoir plus sur Images dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!