how to make the convolution by using MATLAB?
Mostrar comentarios más antiguos
I want to know how to make a convolution of an image using MATLAB
Respuestas (2)
William
el 7 de Oct. de 2011
Type:
help conv
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 Function Approximation and Clustering en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!