how to do convolution without commands

8 次查看(过去 30 天)
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

采纳的回答

Ameer Hamza
Ameer Hamza 2020-4-3
  3 个评论
Ameer Hamza
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!

Translated by