how to make the convolution by using MATLAB?

1 回表示 (過去 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, []);

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by