Calculate the image gradient
Mostrar comentarios más antiguos
I use the function imgradientxy to get the Gx and Gy firstly. Then obtain the direction of the gradient.
some codes like:
% code
b = zeros(100);
b(1:4:end,:) = 1;
[Gx, Gy] = imgradientxy(b);
theta = atan(Gy./Gx);
The image only has some horizontal lines. So The Gx is all zeros and the theta have a lot NAN. What should I do to get the gradient for this image and for other?
2 comentarios
naser telesi
el 1 de Mzo. de 2017
if Gx is zero then let Gx = 1 to avoid divide by zero problem
Matt J
el 1 de Mzo. de 2017
if Gx is zero then let Gx = 1 to avoid divide by zero problem
But theta will be wrong...
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 23 de Sept. de 2013
1 voto
Why do it yourself? Why not just use imgradient()?
1 comentario
Donghui Sun
el 23 de Sept. de 2013
Categorías
Más información sobre Object Analysis en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!