how to make the convolution by using MATLAB?
2 ビュー (過去 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, []);