Home | History | Annotate | Download | only in src

Lines Matching refs:rotMatr

2354 void icvComputeCameraExrinnsicByPosition(CvMat* camPos, CvMat* rotMatr, CvMat* transVect)
2362 if( camPos == 0 || rotMatr == 0 || transVect == 0 )
2367 if( !CV_IS_MAT(camPos) || !CV_IS_MAT(rotMatr) || !CV_IS_MAT(transVect) )
2377 if( rotMatr->cols != 3 || rotMatr->rows != 3 )
2448 cvmSet(rotMatr,i,0,vectorX[i]);
2449 cvmSet(rotMatr,i,1,vectorY[i]);
2450 cvmSet(rotMatr,i,2,vectorZ[i]);
2457 cvInvert(rotMatr,&tmpInvRot,CV_SVD);
2458 cvConvert(&tmpInvRot,rotMatr);
2471 void FindTransformForProjectMatrices(CvMat* projMatr1,CvMat* projMatr2,CvMat* rotMatr,CvMat* transVect)
2478 if( projMatr1 == 0 || projMatr2 == 0 || rotMatr == 0 || transVect == 0 )
2483 if( !CV_IS_MAT(projMatr1) || !CV_IS_MAT(projMatr2) || !CV_IS_MAT(rotMatr) || !CV_IS_MAT(transVect) )
2498 if( rotMatr->cols != 3 || rotMatr->rows != 3 )
2548 cvmSet(rotMatr,i%3,i/3,val);