vote up 2 vote down star

Hello,

I took 2 images with a cross point and now I'm trying to compare these 2 images and find out what is the distance and angle moved. How can I use MATLAB to do this? Thank you very much!

Pic3 Pic2

flag

0% accept rate
1  
Could you upload the images? Are you trying to find the position of the "cross point" in both images? – Jacob Oct 29 at 6:01
flickr.com/photos/32507451@N08/… flickr.com/photos/32507451@N08/… Hello, the 2 images are here. I'm trying to find the position and also how much the "cross point" moved in Pic 3 compared to Pic 2. Thanks! – Veronica Oct 29 at 6:11
Do you always have this cross target, or are you going to have something else here that you need to match? – endolith Nov 9 at 21:44

3 Answers

vote up 1 vote down

Aligning two images of the same scene is called image registration. If you have access to the Image Processing Toolbox, you can find there a number of functions to help you.

Take a look at these demos (image registration section) for examples.

link|flag
Hello, I am able to get the change in angle however I can't get the x and y translation. Thanks. – Veronica Oct 29 at 17:25
1  
perhaps if you update your question to show us what you've done so far, we might be able to help... – Amro Oct 29 at 21:13
BTW if you reversed the rotation transformation, you can find the translation using the cross-correlation method (check out the third example) – Amro Oct 29 at 21:27
Cross-correlation will only work if the two images are rotated to the same angle. – endolith Nov 9 at 21:43
true, I only suggested it since the OP mentioned having solved the rotation problem – Amro Nov 9 at 22:40
vote up 0 vote down

Cross-correlation (Wikipedia calls it Phase correlation) won't work if the images are rotated. However, there's a related method based on log-polar coordinates that will work regardless of rotation, scale, shear, and translation.

This method would be best if you have to match any arbitrary images. Matching known shapes or dark lines is better done with other methods.

link|flag
vote up 0 vote down

If those black lines are always in the images, and they're near perfectly straight (not being distorted into curves), a better method would be to use the Hough transform or Radon transform (kind of different ways to think about doing the same thing) to find just the two black lines, and then compare their positions.

You'd invert the images first, so the lines are bright white (large values), and then do the Hough transform. The output for each image will be two bright white points, from which you can do peak detection. The coordinate of each peak tells you the angle and offset of the line.

I haven't done this in MATLAB, but I see a number of examples and documentation:

link|flag
Interesting idea. BTW why post two answers, just edit your first and add the second one as an alternative solution... – Amro Nov 9 at 22:45
So people can vote on which one is better, leave comments pertaining only to one, etc. Isn't that the point of the site? – endolith Nov 10 at 0:33

Your Answer

Get an OpenID
or

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