how to make the convolution by using MATLAB?

2 ビュー (過去 30 日間)
Ahmad Ishlahuddin
Ahmad Ishlahuddin 2011 年 10 月 7 日
I want to know how to make a convolution of an image using MATLAB

回答 (2 件)

William
William 2011 年 10 月 7 日
Type:
help conv

Image Analyst
Image Analyst 2011 年 10 月 7 日
An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);

Translated by