magnitude and direction
显示 更早的评论
how to calculate the magnitude and direction value of the images in matlab?(code)
2 个评论
Qura
2013-3-29
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
2013-3-29
Please start a new Question for this problem.
回答(3 个)
Junaid
2012-2-6
3 个投票
what do you mean by direction of images. I hope you are talking about gradient value and direction (orientation) ?
3 个评论
munch kitty
2012-2-6
Rupali
2012-2-6
i want to know how to divide image into blocks ????????
munch kitty
2012-2-8
Junaid
2012-2-6
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 个评论
munch kitty
2012-2-8
mano
2012-2-8
i found the gradient and magnitude but i want to how to found gradient magnitude histogram?if u know help me
Lee
2013-3-25
Hi Junaid, may I know why parameter YX is calculated?
ANIMA V A
2015-11-24
0 个投票
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
类别
在 帮助中心 和 File Exchange 中查找有关 Neighborhood and Block Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!