2D convolution in in Matlab.
이전 댓글 표시
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?
채택된 답변
추가 답변 (1개)
카테고리
도움말 센터 및 File Exchange에서 Images에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!