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

조회 수: 3 (최근 30일)
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
Adam Danz
Adam Danz 2020년 6월 15일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

darova
darova 2020년 6월 16일
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
Fego Etese
Fego Etese 2020년 6월 17일
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

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2020년 6월 14일
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
Image Analyst
Image Analyst 2020년 6월 15일
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 2020년 6월 15일
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

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by