OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:projMatrs
(Results
1 - 3
of
3
) sorted by null
/external/opencv/cvaux/src/
cvlevmartrif.cpp
211
CvMat
projMatrs
[3];
213
projMatrs
[0] = cvMat(3,4,CV_64F,projMatrs_dat);
214
projMatrs
[1] = cvMat(3,4,CV_64F,projMatrs_dat+12);
215
projMatrs
[2] = cvMat(3,4,CV_64F,projMatrs_dat+24);
233
cvmSet(&
projMatrs
[currMatr],i,j,val);
255
cvmMul(&
projMatrs
[currMatr],&point4D,&point3D);
269
void icvOptimizeProjectionTrifocal(CvMat **
projMatrs
,CvMat **projPoints,
283
if(
projMatrs
== 0 || projPoints == 0 || resultProjMatrs == 0 || resultPoints4D == 0)
308
if(
projMatrs
[i] == 0 )
310
CV_ERROR( CV_StsNullPtr, "Some of
projMatrs
is a NULL pointer" )
[
all
...]
cvlevmarprojbandle.cpp
51
void icvReconstructPoints4DStatus(CvMat** projPoints, CvMat **
projMatrs
, CvMat** presPoints, CvMat *points4D,int numImages,CvMat **projError=0);
204
void icvComputeDerivateProjAll(CvMat *points4D, CvMat **
projMatrs
, CvMat **pointPres, int numImages,CvMat **projDerives)
214
if(
projMatrs
== 0 || pointPres == 0 || projDerives == 0 )
223
icvComputeDerivateProj(points4D,
projMatrs
[currImage], pointPres[currImage], projDerives[currImage]);
341
void icvComputeDerivatePointsAll(CvMat *points4D, CvMat **
projMatrs
, CvMat **pointPres, int numImages,CvMat **pointDerives)
351
if(
projMatrs
== 0 || pointPres == 0 || pointDerives == 0 )
360
icvComputeDerivatePoints(points4D,
projMatrs
[currImage], pointPres[currImage], pointDerives[currImage]);
738
void icvReconstructPoints4DStatus(CvMat** projPoints, CvMat **
projMatrs
, CvMat** presPoints,
754
if( projPoints == 0 ||
projMatrs
== 0 || presPoints == 0 || points4D == 0 )
825
x * cvmGet(
projMatrs
[currImage],2,k) - cvmGet(projMatrs[currImage],0,k)
[
all
...]
cvtrifocal.cpp
58
void cvOptimizeLevenbergMarquardtBundle( CvMat**
projMatrs
, CvMat** observProjPoints,
233
CvMat*
projMatrs
[3];
234
projMatrs
[0] = projMatr1;
235
projMatrs
[1] = projMatr2;
236
projMatrs
[2] = projMatr3;
322
maxSol =
projMatrs
[0]->rows / 3;
376
cvGetSubRect(
projMatrs
[currCamera],&tmpSubRes,cvRect(0,currSol*3,4,3));
588
CvMat**
projMatrs
,/* array of 3 prejection matrices */
605
if( points == 0 ||
projMatrs
== 0 || statuses == 0 || resStatus == 0 )
619
if(
projMatrs
[currImage] == 0
[
all
...]
Completed in 41 milliseconds