vote up 7 vote down star

Given two image buffers (assume it's an array of ints of size width * height, with each element a color value), how can I map an area defined by a quadrilateral from one image buffer into the other (always square) image buffer? I'm led to understand this is called "projective transformation".

I'm also looking for a general (not language- or library-specific) way of doing this, such that it could be reasonably applied in any language without relying on "magic function X that does all the work for me".

An example: I've written a short program in Java using the Processing library (processing.org) that captures video from a camera. During an initial "calibrating" step, the captured video is output directly into a window. The user then clicks on four points to define an area of the video that will be transformed, then mapped into the square window during subsequent operation of the program. If the user were to click on the four points defining the corners of a door visible at an angle in the camera's output, then this transformation would cause the subsequent video to map the transformed image of the door to the entire area of the window, albeit somewhat distorted.

flag
clarification request: the buffers are rectangles, but the areas being copied are squares? – wnoise Oct 4 '08 at 10:18
The destination area is a rectangle, but the source area is a potentially non-rectangular quadrilateral. – MusiGenesis Oct 4 '08 at 16:30

6 Answers

vote up 2 vote down

If this transformation has to look good (as opposed to the way a bitmap looks if you resize it in Paint), you can't just create a formula that maps destination pixels to source pixels. Values in the destination buffer have to be based on a complex averaging of nearby source pixels or else the results will be highly pixelated.

So unless you want to get into some complex coding, use someone else's magic function, as smacl and Ian have suggested.

link|flag
vote up 1 vote down

Hmmmm....I'll take a stab at this one. This solution relies on the assumption that ratios of angles are preserved in the transformation. See the image for guidance (sorry for the poor image quality...it's REALLY late). The algorithm only provides the mapping of a point in the quadrilateral to a point in the square. You would still need to implement dealing with multiple quad points being mapped to the same square point.

Let ABCD be a quadrilateral where A is the top-left vertex, B is the top-right vertex, C is the bottom-right vertex and D is the bottom-left vertex. The pair (xA, yA) represent the x and y coordinates of the vertex A. We are mapping points in this quadrilateral to the square EFGH whose side has length equal to m.

alt text

Compute the lengths AD, CD, AC, BD and BC:

AD = sqrt((xA-xD)^2 + (yA-yD)^2)
CD = sqrt((xC-xD)^2 + (yC-yD)^2)
AC = sqrt((xA-xC)^2 + (yA-yC)^2)
BD = sqrt((xB-xD)^2 + (yB-yD)^2)
BC = sqrt((xB-xC)^2 + (yB-yC)^2)

Let thetaD be the angle at the vertex D and thetaC be the angle at the vertex C. Compute these angles using the cosine law:

thetaD = arccos((AD^2 + CD^2 - AC^2) / (2*AD*CD))
thetaC = arccos((BC^2 + CD^2 - BD^2) / (2*BC*CD))

We map each point P in the quadrilateral to a point Q in the square. For each point P in the quadrilateral, do the following:

  • Find the distance DP:

    DP = sqrt((xP-xD)^2 + (yP-yD)^2)
    
  • Find the distance CP:

    CP = sqrt((xP-xC)^2 + (yP-yC)^2)
    
  • Find the angle thetaP1 between CD and DP:

    thetaP1 = arccos((DP^2 + CD^2 - CP^2) / (2*DP*CD))
    
  • Find the angle thetaP2 between CD and CP:

    thetaP2 = arccos((CP^2 + CD^2 - DP^2) / (2*CP*CD))
    
  • The ratio of thetaP1 to thetaD should be the ratio of thetaQ1 to 90. Therefore, calculate thetaQ1:

    thetaQ1 = thetaP1 * 90 / thetaD
    
  • Similarly, calculate thetaQ2:

    thetaQ2 = thetaP2 * 90 / thetaC
    
  • Find the distance HQ:

    HQ = m * sin(thetaQ2) / sin(180-thetaQ1-thetaQ2)
    
  • Finally, the x and y position of Q relative to the bottom-left corner of EFGH is:

    x = HQ * cos(thetaQ1)
    y = HQ * sin(thetaQ1)
    

You would have to keep track of how many colour values get mapped to each point in the square so that you can calculate an average colour for each of those points.

link|flag
vote up 1 vote down

Here's how would do it in principle:

  • map the origin of A to the origin of B via a traslation vector t.
  • take unit vectors of A (1,0) and (0,1) and calculate how they would be mapped onto the unit vectors of B.
  • this gives you a transformation matrix M so that every vector a in A maps to M a + t
  • invert the matrix and negate the traslation vector so for every vector b in B you have the inverse mapping b -> M-1 (b - t)
  • once you have this transformation, for each point in the target area in B, find the corresponding in A and copy.

The advantage of this mapping is that you only calculate the points you need, i.e. you loop on the target points, not the source points. It was a widely used technique in the "demo coding" scene a few years back.

link|flag
You're describing a linear transformation, which allows translation, rotation, scaling, reflection and shear. Unfortunately a projective transformation is not in general linear (in the sense it's not just a matrix multiply). – Hugh Allen Oct 4 '08 at 15:52
Apparently I spoke too soon; "linear transformations" according to wikipedia (see linear map) don't even include translation. But my point stands that a projective transformation is more complicated than what you describe. – Hugh Allen Oct 4 '08 at 15:58
Uhm, a linear transformation is without the traslation element. Furthermore linear transformations certainly include projections (e.g. ((1,0),(0,0)) is a projection) – Sklivvz Oct 4 '08 at 16:51
In any case I never said that the single elements should be constants. They could be functions of the point, in which case calculating the inverses would be more complicated, but the principle would still apply. – Sklivvz Oct 4 '08 at 16:54
Update: the term I really meant was "Affine transformation". – Hugh Allen Oct 5 '08 at 3:55
show 3 more comments
vote up 0 vote down

It's not clear at the time I write this precisely what you want

Assuming you just want to copy an image into another another image, but scale it to different widths and heights, there are a few techniques:

In all of these let the first region have heights w and h, and the second w' and h'.

Nearest neightbor: For all destination pixels (x,y), copy the source pixel at (round(x*w/w'), round(y*h/h')).

This will distort the image noticeably unless it's a nice w/w' is a nice ratio like 1/2,

Bilinear interpolation: For all destination pixels (x,y), blend (take a weighted average of) the source pixels at the floor and ceiling of (x*w/w'),(y*h/h'), weighted by the fractional part and (1-the fractional part) -- how close it is to one pixel vs another.

http://en.wikipedia.org/wiki/Bilinear_interpolation

This will distort the image less noticeably, but possibly blur it a bit.

There are other more complicated techniques in use:

But if you can go to the trouble of them, and can spare the efficiency hit, I'd use a Fourier transform instead.

Fourier transform: Perform a 2-d FFT of the source into a temporary buffer. Pad and/or truncate it to the new size (w',h'). Unfourier transform into the new destination. This is pretty much the best looking, but is a bit more expensive.

link|flag
vote up 1 vote down

I think what you're after is a planar homography, have a look at these lecture notes:

http://www.cs.utoronto.ca/~strider/vis-notes/tutHomography04.pdf

If you scroll down to the end you'll see an example of just what you're describing. I expect there's a function in the Intel OpenCV library which will do just this.

link|flag
vote up 1 vote down

There is a C++ project on CodeProject that includes source for projective transformations of bitmaps. The maths are on Wikipedia here. Note that so far as i know, a projective transformation will not map any arbitrary quadrilateral onto another, but will do so for triangles, you may also want to look up skewing transforms.

link|flag

Your Answer

Get an OpenID
or

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