how to make the convolution by using MATLAB?
2 views (last 30 days)
Show older comments
I want to know how to make a convolution of an image using MATLAB
0 Comments
Answers (2)
Image Analyst
on 7 Oct 2011
An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!