how to make the convolution by using MATLAB?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to know how to make a convolution of an image using MATLAB
0 Kommentare
Antworten (2)
Image Analyst
am 7 Okt. 2011
An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Function Approximation and Clustering finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!