how to make the convolution by using MATLAB?
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to know how to make a convolution of an image using MATLAB
댓글 수: 0
답변 (2개)
Image Analyst
2011년 10월 7일
An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!