how to make the convolution by using MATLAB?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I want to know how to make a convolution of an image using MATLAB
0 comentarios
Respuestas (2)
Image Analyst
el 7 de Oct. de 2011
An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);
0 comentarios
Ver también
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!