OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:points4D
(Results
1 - 3
of
3
) sorted by null
/external/opencv/cvaux/src/
cvlevmarprojbandle.cpp
51
void icvReconstructPoints4DStatus(CvMat** projPoints, CvMat **projMatrs, CvMat** presPoints, CvMat *
points4D
,int numImages,CvMat **projError=0);
70
void icvComputeDerivateProj(CvMat *
points4D
,CvMat *projMatr, CvMat *status, CvMat *derivProj)
79
if(
points4D
== 0 || projMatr == 0 || status == 0 || derivProj == 0)
84
if( !CV_IS_MAT(
points4D
) )
86
CV_ERROR( CV_StsUnsupportedFormat, "
points4D
must be a matrix 4xN" );
91
numPoints =
points4D
->cols;
95
CV_ERROR( CV_StsOutOfRange, "Number of
points4D
must be more than zero" );
98
if(
points4D
->rows != 4 )
100
CV_ERROR( CV_StsOutOfRange, "Number of coordinates of
points4D
must be 4" );
155
X[0] = cvmGet(
points4D
,0,currVisPoint)
[
all
...]
cvlevmartrif.cpp
62
CvMat*
points4D
);
274
CvMat *
points4D
= 0;
302
CV_ERROR( CV_StsUnmatchedSizes, "Number of coordinates of
points4D
must be 4" );
358
CV_CALL(
points4D
= cvCreateMat(4,numPoints,CV_64F) );
368
points4D
);
401
cvmSet(vectorX0,36 + currPoint*4 + 0,0,cvmGet(
points4D
,0,currPoint));
402
cvmSet(vectorX0,36 + currPoint*4 + 1,0,cvmGet(
points4D
,1,currPoint));
403
cvmSet(vectorX0,36 + currPoint*4 + 2,0,cvmGet(
points4D
,2,currPoint));
404
cvmSet(vectorX0,36 + currPoint*4 + 3,0,cvmGet(
points4D
,3,currPoint));
435
cvReleaseMat(&
points4D
);
[
all
...]
cvtrifocal.cpp
82
CvMat*
points4D
);
89
CvMat*
points4D
);
93
CvMat*
points4D
);
97
CvMat*
points4D
);
180
CvMat*
points4D
*/)
202
if( (points1->cols != points2->cols) || (points1->cols != points3->cols) || (points1->cols != 6) /* || (
points4D
->cols !=6) */)
220
if(
points4D
->row != 4 )
222
CV_ERROR( CV_StsUnmatchedSizes, "Number of coordinates of
points4D
must be 4" );
382
if(
points4D
)
384
if( currSol <
points4D
->rows / 4
[
all
...]
Completed in 31 milliseconds