how to do convolution without commands
3 ビュー (過去 30 日間)
古いコメントを表示
Sivakumar Rajagopal
2020 年 4 月 3 日
コメント済み: Sivakumar Rajagopal
2020 年 4 月 6 日
I=img;
b=rgb2gray(I); [Gx,Gy]=imgradientxy(b); figure();
[Gmag, Gdir] = imgradient(Gx,Gy);
gx=[-1 0 1; -2 0 2; -1 0 1];
gy=transpose(gx);
gi=gray2ind(b);
Fx=conv2(double(b),gx,'same')
In the above coding how to do convolution without conv2
0 件のコメント
採用された回答
Ameer Hamza
2020 年 4 月 3 日
See the answer by Iman Ansari on this question: https://www.mathworks.com/matlabcentral/answers/75073-built-in-2d-convolution-vs-for-loop-convolution-differences
3 件のコメント
Ameer Hamza
2020 年 4 月 3 日
See the calculation of res2. That code compares built-in convolution with for loop.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!