how to make the convolution by using MATLAB?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to know how to make a convolution of an image using MATLAB
0 commentaires
Réponses (2)
Image Analyst
le 7 Oct 2011
An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);
0 commentaires
Voir également
Catégories
En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!