how to make the convolution by using MATLAB?
古いコメントを表示
I want to know how to make a convolution of an image using MATLAB
回答 (2 件)
William
2011 年 10 月 7 日
Type:
help conv
Image Analyst
2011 年 10 月 7 日
An example:
blurredImage = conv2(grayImage, ones(3)/9, 'same');
imshow(blurredImage, []);
カテゴリ
ヘルプ センター および File Exchange で Function Approximation and Clustering についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!