how to make the convolution by using MATLAB?

I want to know how to make a convolution of an image using MATLAB

回答 (2 件)

Image Analyst
Image Analyst 2011 年 10 月 7 日

0 投票

An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);

質問済み:

2011 年 10 月 7 日

Community Treasure Hunt

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

Start Hunting!

Translated by