HomeSort by relevance Sort by last modified time
    Searched full:points2 (Results 1 - 8 of 8) sorted by null

  /external/opencv/cvaux/src/
cvcorrimages.cpp 176 /* For given points1 (with pntStatus) on image1 finds corresponding points2 on image2 and set pntStatus2 for them */
182 CvMat *points2,
207 points1 == 0 || points2 == 0 ||
229 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) ||
250 if( points2->cols != numPoints || pntStatus1->cols != numPoints || pntStatus2->cols != numPoints )
255 if( points1->rows != 2 || points2->rows != 2 )
355 cvmSet(points2,0,i,cornerPoints2[currVis].x);
356 cvmSet(points2,1,i,cornerPoints2[currVis].y);
385 cvmSet(tmpPoints2,0,currPoint,cvmGet(points2,0,i));
386 cvmSet(tmpPoints2,1,currPoint,cvmGet(points2,1,i))
849 CvMat *points2 = 0; local
    [all...]
_cvvm.h 124 int* points2,
245 int* points2,
250 int* points2,
258 int* points2,
cvtrifocal.cpp 62 int icvComputeProjectMatrices6Points( CvMat* points1,CvMat* points2,CvMat* points3,
67 void GetGeneratorReduceFundSolution(CvMat* points1,CvMat* points2,CvMat* fundReduceCoef1,CvMat* fundReduceCoef2);
75 void icvComputeTransform4D(CvMat* points1,CvMat* points2,CvMat* transMatr);
77 int icvComputeProjectMatricesNPoints( CvMat* points1,CvMat* points2,CvMat* points3,
84 int icvComputeProjectMatricesNPoints( CvMat* points1,CvMat* points2,CvMat* points3,
178 int icvComputeProjectMatrices6Points( CvMat* points1,CvMat* points2,CvMat* points3,
190 if( points1 == 0 || points2 == 0 || points3 == 0 ||
196 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) || !CV_IS_MAT(points3) ||
202 if( (points1->cols != points2->cols) || (points1->cols != points3->cols) || (points1->cols != 6) /* || (points4D->cols !=6) */)
207 if( points1->rows != 2 || points2->rows != 2 || points3->rows != 2
    [all...]
cvlmeds.cpp 48 icvLMedS( int *points1, int *points2, int numPoints, CvMatrix3 * fundamentalMatrix )
90 mr[i * 3] = points2[i * 2];
91 mr[i * 3 + 1] = points2[i * 2 + 1];
    [all...]
cvepilines.cpp     [all...]
  /external/opencv/cv/include/
cvcompat.h 541 CV_INLINE void cvFindFundamentalMatrix( int* points1, int* points2,
558 cvmSet(pointsMat2,0,i,points2[curr]);//x
559 cvmSet(pointsMat2,1,i,points2[curr+1]);//y
    [all...]
cv.h     [all...]
  /external/opencv/cv/src/
cvfundam.cpp 946 cvFindFundamentalMat( const CvMat* points1, const CvMat* points2,
961 CV_ASSERT( CV_IS_MAT(points1) && CV_IS_MAT(points2) && CV_ARE_SIZES_EQ(points1, points2) );
973 cvConvertPointsHomogeneous( points2, m2 );
    [all...]

Completed in 229 milliseconds