How to locate a point on an image relative to a reference point from another image?

10 views (last 30 days)
I want to be able to find the location of M1 on the second image relative the the R line, given the R line to be the reference line from the first image, and the R line has been found on the second image but with different angles to the horizontal axis. The two images are same here for illustration but in use is going to be different images but the same fingerprint so there could be rotation of the R line in the second image from the first. Please how do I go about this?
Thanks.
  4 Comments
Adam Danz
Adam Danz on 15 Jun 2020
My guess is that the negative values are the angles in the opposite direction. For example, a 90 deg angle is also a 270 degree angle.

Sign in to comment.

Accepted Answer

darova
darova on 16 Jun 2020
Use atan2 function
ar = atan2(yr,xr); % angle or R point
am = ar + m1; % angle of M point
[xm,ym] = pol2cart(am,rm); % cartesian coordinates of M point (rm - radius)
  3 Comments
Fego Etese
Fego Etese on 17 Jun 2020
But in images lets say with width of 387 and height of 400, pixel coordinates like A [350, 250] as [row, column], i.e. [y, x] in cartesian coordinates, A will be lower than pixel coordinates like B [200, 150] while in cartesian coordinates A will be higher B as B is closer to origin on the y axis. This is why I asked if they are the same

Sign in to comment.

More Answers (1)

Image Analyst
Image Analyst on 14 Jun 2020
I don't think there is anything built in to MATLAB for that. You'll need to search for point matching algorithm and code up one of them.
  3 Comments
Image Analyst
Image Analyst on 15 Jun 2020
Yes, but in general a solution written for a very very specific case won't work in general. In general don't you want to know if one fingerprint matches another based on a set of minutia points?
You can find way better algorithms here in VisionBib than any advise you or we can think up. I suggest you start there.
Fego Etese
Fego Etese on 15 Jun 2020
The thing is this is actually just part of the matching process, I'm already using template matching to find the location of the R line with Surf algorithm

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!