how to make the convolution by using MATLAB?
이전 댓글 표시
I want to know how to make a convolution of an image using MATLAB
답변 (2개)
William
2011년 10월 7일
Type:
help conv
Image Analyst
2011년 10월 7일
An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);
카테고리
도움말 센터 및 File Exchange에서 Function Approximation and Clustering에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!