how to do convolution without commands

4 vues (au cours des 30 derniers jours)
Sivakumar Rajagopal
Sivakumar Rajagopal le 3 Avr 2020
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

Réponse acceptée

Ameer Hamza
Ameer Hamza le 3 Avr 2020
  3 commentaires
Ameer Hamza
Ameer Hamza le 3 Avr 2020
See the calculation of res2. That code compares built-in convolution with for loop.
Sivakumar Rajagopal
Sivakumar Rajagopal le 6 Avr 2020
Ok. Thanks.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by