Ask Your Question

Andreyk6's profile - activity

2013-03-25 08:55:17 -0600 asked a question How To Set Camera Capture Parameters?

Hello, how I can set capture width and height when I capture image from webcam. Can I do this without using videoInput library?

2013-03-09 10:34:32 -0600 commented answer Some trouble with Perspective Transform

Thank you.

2013-03-09 10:29:51 -0600 received badge  Scholar (source)
2013-03-09 07:41:25 -0600 received badge  Student (source)
2013-03-09 02:47:55 -0600 received badge  Supporter (source)
2013-03-09 02:44:40 -0600 received badge  Editor (source)
2013-03-09 01:39:17 -0600 asked a question Some trouble with Perspective Transform

Hello, i use PerspectiveTransform and as a result have matrix of transformation. I need transform coordinates of ONE point using this matrix, i read that i can use coficient of matrix for calculate it, and matrix buil like this image description

x'i = (Ax + By + C)/(ax+ by + c)

y'i = (Dx + Ey + F)/(ax+ by + c)

CvPoint2D32f srcQuad[4], dstQuad[4];
CvMat* warp_matrix = cvCreateMat(3,3,CV_32FC1);
srcQuad... some code here
dstQuad... and here
cvGetPerspectiveTransform(srcQuad,dstQuad,matrix);

But when i use this formula it don`t work corectly every time

p.x=(matrix[0][0]*p.x+matrix[0][1]*p.y+matrix[0][2])/(matrix[2][0]*p.x+matrix[2][1]*p.y+matrix[2][2]);
p.y=(matrix[1][0]*p.x+matrix[1][1]*p.y+matrix[1][2])/(matrix[2][0]*p.x+matrix[2][1]*p.y+matrix[2][2]);

I think that the transformation matrix in OpenCV has a different structure, or I made ​​a mistake somewhere. Perhaps there is other variant coordinate transformation one point? And Sorry for my english)