Borrar filtros
Borrar filtros

Gradient Field of an Image...

3 visualizaciones (últimos 30 días)
Philip
Philip el 17 de Feb. de 2011
Hi,
Does anyone know how to calculate the gradient field of an image? I have checked the use of Quiver plots to achieve this, but am having difficulties applying it to an image...
Many thanks in advance for any help anyone can give!
Phil

Respuesta aceptada

Sean de Wolski
Sean de Wolski el 17 de Feb. de 2011
You can calculate the gradient using:
doc gradient
and then use the results from that for your quiver plot.
  1 comentario
Philip
Philip el 21 de Feb. de 2011
Thanks! I think this should be on the right lines, but I'm having a few issues using quiver... How can I overlay the gradient field for the entire image?
I am currently using:
[gx gy] = gradient(dens,.2,.2);
figure('name','Gradient');
imshow(img(1:r,1:c),'InitialMagnification','fit');
hold on;
quiver(gx(1:r,1:c),gy(1:r,1:c));
title('Gradient Field');
And after some processing time, I just get back a completely blue figure... Do you happen to know what I am doing wrong?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by