Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following gradient vectors Ix and Iy and need to compute

O(x) = (−1)λ (−Iy (x), Ix (x))

where λ = 1 gives an anti-clockwise rotation in the image coordinates, and λ = 2 provides a clockwise rotation. This is then assigned as orientation of current in the object boundary.


I need to get to the equation above, but as my understanding, something like (Ix (x), Iy (x)) is useless in matlab. If you had something like function1(Ix (x), Iy (x)) then fair enough. So how do I code up the equation above?

share|improve this question
This is not clear. So is lambda a constant, or a function of two variables? – Oli Charlesworth May 7 '12 at 23:59
Posting a link to the document/webpage from which this equation come from would help clarify your question. Can you do that? – Simon May 8 '12 at 4:30
hi yes - sorry the link is here cs.swan.ac.uk/~csjason/snakes/mac it's the link that says download paper. – brucezepplin May 8 '12 at 14:06
Please don't use StackOverflow to do your homework for you. You can ask questions when you get stuck, but not to solve the whole thing. People have gotten expelled for this. The internet never forgets. – Will May 9 '12 at 11:51

closed as not a real question by Oli Charlesworth, Chris, Will May 9 '12 at 11:50

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

If I do this:

function J = orientation(dx,dy,lambda)

switch(lambda)
    case dx > dy
        lambda = 1;
    case dy > dx
        lambda = 2;
end

J = lambda;

then when i call Ox = orientation(dx,dy,lambda) etc then I get the correct orientation (rotates gradient vector by 90 degrees), but only when dx = 0 or dy = 0. Any ideas on how to do this for where dx and dy aren't 0?

share|improve this answer

As far as I understand, you might need something like this:

% get gradient field of image I
[Ix, Iy] = gradient(I);

% do the calculation
Ox = (-1) ^ lambda .* -Iy;
Oy = (-1) ^ lambda .* -Ix;

So that Ox and Oy contain the x and y components of the vector field O (e.g., the vector at point (x, y) in this field is given by [Ox(x, y), Oy(x, y)]). If lambda varies on a point-by-point basis, you might have to use a slightly different approach.

share|improve this answer
yes lambda will vary at the point where the magnitude of Iy > Ix and back again. (Imagine going round the edge of a circle). – brucezepplin May 8 '12 at 19:52

Not the answer you're looking for? Browse other questions tagged or ask your own question.