how to make the convolution by using MATLAB?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to know how to make a convolution of an image using MATLAB
0 Commenti
Risposte (2)
Image Analyst
il 7 Ott 2011
An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!