how to make the convolution by using MATLAB?
1 回表示 (過去 30 日間)
古いコメントを表示
I want to know how to make a convolution of an image using MATLAB
0 件のコメント
回答 (2 件)
Image Analyst
2011 年 10 月 7 日
An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!