how to make the convolution by using MATLAB?

1 view (last 30 days)
I want to know how to make a convolution of an image using MATLAB

Answers (2)

William
William on 7 Oct 2011
Type:
help conv

Image Analyst
Image Analyst on 7 Oct 2011
An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!