how to make the convolution by using MATLAB?

1 visualización (últimos 30 días)
Ahmad Ishlahuddin
Ahmad Ishlahuddin el 7 de Oct. de 2011
I want to know how to make a convolution of an image using MATLAB

Respuestas (2)

William
William el 7 de Oct. de 2011
Type:
help conv

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

Categorías

Más información sobre Deep Learning Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by