Home | History | Annotate | Download | only in src

Lines Matching refs:objPoints

73 void icvComputeProjectMatrix(CvMat* objPoints,CvMat* projPoints,CvMat* projMatr);
338 CvMat objPoints;
340 objPoints = cvMat(4,6,CV_64F,objPoints_dat);
341 cvZero(&objPoints);
372 icvComputeProjectMatrix(&objPoints,&projPoints,&projMatrix);
1767 void icvComputeProjectMatrix(CvMat* objPoints,CvMat* projPoints,CvMat* projMatr)
1783 if( objPoints == 0 || projPoints == 0 || projMatr == 0)
1788 if( !CV_IS_MAT(objPoints) || !CV_IS_MAT(projPoints) || !CV_IS_MAT(projMatr) )
1805 if( numPoints != objPoints->cols )
1810 if( objPoints->rows != 4 )
1858 X = cvmGet(objPoints,0,i);
1859 Y = cvmGet(objPoints,1,i);
1860 Z = cvmGet(objPoints,2,i);
1861 W = cvmGet(objPoints,3,i);