magnitude and direction
Ältere Kommentare anzeigen
how to calculate the magnitude and direction value of the images in matlab?(code)
2 Kommentare
Qura
am 29 Mär. 2013
Hi! I want to construct histogram of gradient magnitude and gradient direction for each image gradient.angle are quantized by 45 Please help
Walter Roberson
am 29 Mär. 2013
Please start a new Question for this problem.
Antworten (3)
Junaid
am 6 Feb. 2012
3 Stimmen
what do you mean by direction of images. I hope you are talking about gradient value and direction (orientation) ?
3 Kommentare
munch kitty
am 6 Feb. 2012
Rupali
am 6 Feb. 2012
i want to know how to divide image into blocks ????????
munch kitty
am 8 Feb. 2012
Junaid
am 6 Feb. 2012
I think you want to compute the SIFT right ?
Anyway to divide the image into blocks, you can use following tip
in case you have difficulty you can share your code.
To find the gradient magnitude and orientation, the following code may help you.
angle = 360;
[GradientX,GradientY] = gradient(double(img));
Gr = sqrt((GradientX.*GradientX)+(GradientY.*GradientY));
index = GradientX == 0;
GradientX(index) = 1e-5;
YX = GradientY./GradientX;
A = ((atan2(GradientY,GradientX)+pi)*180)/pi;
A contains the orientation of each pixel.
3 Kommentare
munch kitty
am 8 Feb. 2012
mano
am 8 Feb. 2012
i found the gradient and magnitude but i want to how to found gradient magnitude histogram?if u know help me
Lee
am 25 Mär. 2013
Hi Junaid, may I know why parameter YX is calculated?
ANIMA V A
am 24 Nov. 2015
0 Stimmen
How to compute gradient in three different directions? Can any one help me i need to compute the gradient in 3 different directions for an image please help me
Kategorien
Mehr zu Neighborhood and Block Processing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!