I'm currently trying to implement transformations through using EMGU, though I can't seem to get my head round how it works (and there doesn't seem to be any examples online).
I've got my image, with the 4 points I wish to transform from (and to), though I don't know what other variables are required, it asks for 'mapMat' ?
Here is what I have so far:
float[,] tmp = {
{bottomLeft.x, bottomLeft.y},
{topLeft.x, topLeft.y},
{topRight.x, topRight.y},
{bottomRight.x, bottomRight.y}
};
Matrix<float> sourceMat = new Matrix<float>(tmp);
float[,] target = {
{0, height},
{0, 0},
{width, 0},
{width, height}
};
Matrix<float> targetMat = new Matrix<float>(target);
//mapMat = just a placeholder matrix?
Matrix<float> mapMat = new Matrix<float>(target);
CvInvoke.cvGetAffineTransform(sourceMat.Ptr, targetMat.Ptr, mapMat.Ptr);
This however doesn't work. I was also unsure whether or not an affine transformation was the most ideal solution? I read something about FindHomography too and also perspective transformations, but not sure if they would apply here.
The target transformation i wish to achieve is like this:
http://img832.imageshack.us/img832/5157/targettransform.png
Any help would be greatly appreciated,
Thanks
First a little intro:
So suppose you have your 4 source and destination corners, and you want to estimate a Perspective Transformation this code should do what you want:
Take a look at CameraCalibration for other useful methods