Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

: I have a sequence of images of a plane object with some targets on it. Some of these targets are stable, but some of them are moving. Limitation: My stable points don't form rectangle required for projective transformation.

Question: How can I find the in plane deformation using image sequenc of instable points.

share|improve this question
Have you considered affine transformations? These can be computed from optical flow. For example, in Python or Matlab, there are several existing techniques for tracking based on optical flow. These usually compute the intermediary affine transformations required to move a small image patch (i.e. a rectangle around your instable points) from one frame to the next frame. There are methods for stitching several of these transformations together to get a best-estimate of the global affine transformation. I did this once for identifying the license plate of a fast-moving car. – EMS May 26 '11 at 23:13

1 Answer

You may be interested to have a look at thin-plate splines.

The "2D point morph example" is probably what you want (if I understand correctly your statement).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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