I continue to get the same issue although I have two matrices using only integers.
h1 = {-1, -2, -1; 0, 0, 0; 1, 2, 1};
ogI = imread('image.jpeg');
I = rgb2gray(ogI);
I1 = conv2(I, h1, 'same');
imshow(I1);
Even if I set 'I' to a single or double inside of the function it does not work. This may be trivial but anything would help, thank you.

 채택된 답변

Ameer Hamza
Ameer Hamza 2020년 10월 6일
편집: Ameer Hamza 2020년 10월 6일
You are defining h1 as a cell array. Define it as a numeric array
h1 = [-1, -2, -1; 0, 0, 0; 1, 2, 1]; % use square brackets

댓글 수: 2

Thank you! It was trivial. facepalm
I am glad to be of help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Images에 대해 자세히 알아보기

질문:

2020년 10월 6일

댓글:

2020년 10월 6일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by