Gradient Field of an Image...

3 Ansichten (letzte 30 Tage)
Philip
Philip am 17 Feb. 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

Akzeptierte Antwort

Sean de Wolski
Sean de Wolski am 17 Feb. 2011
You can calculate the gradient using:
doc gradient
and then use the results from that for your quiver plot.
  1 Kommentar
Philip
Philip am 21 Feb. 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?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by