HomeSort by relevance Sort by last modified time
    Searched refs:points1 (Results 1 - 11 of 11) sorted by null

  /external/opencv/cvaux/src/
_cvvm.h 123 CvStatus icvPoint7( int* points1,
244 int* points1,
249 CvStatus icvLMedS( int* points1,
257 int* points1,
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) */
    [all...]
cvcorrimages.cpp 176 /* For given points1 (with pntStatus) on image1 finds corresponding points2 on image2 and set pntStatus2 for them */
180 CvMat *points1,
207 points1 == 0 || points2 == 0 ||
229 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) ||
243 numPoints = points1->cols;
247 CV_ERROR( CV_StsOutOfRange, "Number of points1 must be > 0" );
255 if( points1->rows != 2 || points2->rows != 2 )
325 cornerPoints1[curr].x = (float)cvmGet(points1,0,i);
326 cornerPoints1[curr].y = (float)cvmGet(points1,1,i);
382 cvmSet(tmpPoints1,0,currPoint,cvmGet(points1,0,i))
    [all...]
cvlmeds.cpp 48 icvLMedS( int *points1, int *points2, int numPoints, CvMatrix3 * fundamentalMatrix )
85 ml[i * 3] = points1[i * 2];
86 ml[i * 3 + 1] = points1[i * 2 + 1];
    [all...]
cvepilines.cpp     [all...]
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
UiObject.java 1022 PointerCoords[] points1 = new PointerCoords[steps + 2]; local
    [all...]
  /external/opencv/cv/include/
cvcompat.h 386 CvMat points1 = cvMat( 1, num_points, CV_32SC2, points ); local
389 cvConvexHull2( &points1, &hull1, orientation, 0 );
541 CV_INLINE void cvFindFundamentalMatrix( int* points1, int* points2,
554 cvmSet(pointsMat1,0,i,points1[curr]);//x
555 cvmSet(pointsMat1,1,i,points1[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) );
965 count = MAX(points1->cols, points1->rows);
970 cvConvertPointsHomogeneous( points1, m1 );
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 
  /prebuilts/misc/common/ub-uiautomator/
ub-uiautomator.jar 

Completed in 333 milliseconds