Lines Matching refs:point2
77 CvPoint3D64d point2, in icvGetSymPoint3D() argument
87 icvGetPieceLength3D(pointCorner,point2,&len2); in icvGetSymPoint3D()
211 CvPoint2D64d point2; in icvComputeCoeffForStereoV3() local
225 point2.x = (1.0 - alpha) * quad1[1][0] + alpha * quad1[2][0]; in icvComputeCoeffForStereoV3()
226 point2.y = (1.0 - alpha) * quad1[1][1] + alpha * quad1[2][1]; in icvComputeCoeffForStereoV3()
236 point2, in icvComputeCoeffForStereoV3()
340 CvPoint2D64d point2, in icvComCoeffForLine() argument
369 icvGetDirectionForPoint( point2, in icvComCoeffForLine()
667 …vGetAngleLine( CvPoint2D64d startPoint, CvSize imageSize,CvPoint2D64d *point1,CvPoint2D64d *point2) in icvGetAngleLine() argument
695 *point2 = pc; in icvGetAngleLine()
700 *point2 = pd; in icvGetAngleLine()
705 *point2 = pc; in icvGetAngleLine()
713 *point2 = pd; in icvGetAngleLine()
718 *point2 = pc; in icvGetAngleLine()
723 *point2 = pd; in icvGetAngleLine()
733 *point2 = pa; in icvGetAngleLine()
738 *point2 = pb; in icvGetAngleLine()
746 *point2 = pd; in icvGetAngleLine()
751 *point2 = pc; in icvGetAngleLine()
1151 void icvGetPieceLength(CvPoint2D64d point1,CvPoint2D64d point2,double* dist) in icvGetPieceLength() argument
1153 double dx = point2.x - point1.x; in icvGetPieceLength()
1154 double dy = point2.y - point1.y; in icvGetPieceLength()
1161 void icvGetPieceLength3D(CvPoint3D64d point1,CvPoint3D64d point2,double* dist) in icvGetPieceLength3D() argument
1163 double dx = point2.x - point1.x; in icvGetPieceLength3D()
1164 double dy = point2.y - point1.y; in icvGetPieceLength3D()
1165 double dz = point2.z - point1.z; in icvGetPieceLength3D()
2002 CvPoint2D64d point1,CvPoint2D64d point2, in icvGetMiddleAnglePoint() argument
2009 icvGetPieceLength(basePoint,point2,&dist2); in icvGetMiddleAnglePoint()
2014 pointNew1.x = basePoint.x + (1.0/alpha) * ( point2.x - basePoint.x ); in icvGetMiddleAnglePoint()
2015 pointNew1.y = basePoint.y + (1.0/alpha) * ( point2.y - basePoint.y ); in icvGetMiddleAnglePoint()
2021 icvGetCrossPiecePiece(point1,point2,pointNew1,pointNew2,midPoint,&res); in icvGetMiddleAnglePoint()
2037 CV_IMPL double icvGetVect(CvPoint2D64d basePoint,CvPoint2D64d point1,CvPoint2D64d point2) in icvGetVect() argument
2039 return (point1.x - basePoint.x)*(point2.y - basePoint.y) - in icvGetVect()
2040 (point2.x - basePoint.x)*(point1.y - basePoint.y); in icvGetVect()
2051 CvPoint2D64d point1,point2; in icvTestPoint() local
2054 icvProjectPointToDirect(testPoint,line2,&point2); in icvTestPoint()
2056 double sign1 = icvGetVect(basePoint,point1,point2); in icvTestPoint()
2061 sign2 = icvGetVect(basePoint,point2,testPoint); in icvTestPoint()
2274 int GetAngleLinee( CvPoint2D32f epipole, CvSize imageSize,CvPoint2D32f point1,CvPoint2D32f point2) in GetAngleLinee() argument
2309 point2 = pc; in GetAngleLinee()
2314 point2 = pd; in GetAngleLinee()
2319 point2 = pc; in GetAngleLinee()
2327 point2 = pd; in GetAngleLinee()
2332 point2 = pb; in GetAngleLinee()
2337 point2 = pd; in GetAngleLinee()
2345 point2 = pb; in GetAngleLinee()
2350 point2 = pd; in GetAngleLinee()
2613 CvPoint2D32f* point2) in icvComputeeInfiniteProject1() argument
2649 point2->x = (float)(projP[0] / projP[2]); in icvComputeeInfiniteProject1()
2650 point2->y = (float)(projP[1] / projP[2]); in icvComputeeInfiniteProject1()
2661 CvPoint2D32f point2) in icvComputeeInfiniteProject2() argument
2667 p2[0] = (double)(point2.x); in icvComputeeInfiniteProject2()
2668 p2[1] = (double)(point2.y); in icvComputeeInfiniteProject2()
3025 float icvDefinePointPosition(CvPoint2D32f point1,CvPoint2D32f point2,CvPoint2D32f point) in icvDefinePointPosition() argument
3027 float ax = point2.x - point1.x; in icvDefinePointPosition()
3028 float ay = point2.y - point1.y; in icvDefinePointPosition()