how to make the convolution by using MATLAB?

2 vues (au cours des 30 derniers jours)
Ahmad Ishlahuddin
Ahmad Ishlahuddin le 7 Oct 2011
I want to know how to make a convolution of an image using MATLAB

Réponses (2)

William
William le 7 Oct 2011
Type:
help conv

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

Community Treasure Hunt

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

Start Hunting!

Translated by