2D convolution in in Matlab.
Mostrar comentarios más antiguos
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?
Respuesta aceptada
Más respuestas (1)
Matt J
el 10 de Jul. de 2018
I = im2double( rgb2gray( imread("lena.jpg") ) );
1 comentario
Ba Ba Black Sheep!
el 10 de Jul. de 2018
Categorías
Más información sobre Images en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!