Matt
Posts:
1,141
Registered:
1/28/09
|
|
Re: Image rotation detection probelm
Posted:
Jun 19, 2009 10:49 AM
|
|
"Pradyumna A" <a_pradyumna@yahoo.com> wrote in message <h1fn0q$aeg$1@fred.mathworks.com>... > Hello, > > I have 2 images. One is the reference image and the other is the rotated version of the reference image. I would like to find what is the angle by which the 2nd image is rotated wrt 1st one. Also in future, the second image will be scaled ----------
In what way will the image be scaled? Do you mean stretched geometrically or do you mean all the pixel values will be scaled?
------ >and translated along with this rotation !. This has to be done automatically (without human interference in selecting feature points etc) -----
One thing you can try is to compute
P1=abs(fft(radon(Image1))) P2=abs(fft(radon(Image2)))
You will see that P1 is shifted with respect to P2 by an amount corresponding to the rotation. You can use your favorite shift measurement technique (e.g. correlation) to calculate the shift, and hence the rotation. Also, translation will not affect P1 and P2.
|
|