Home | History | Annotate | Download | only in src

Lines Matching defs:point1

76                             CvPoint3D64d point1,
82 icvGetPieceLength3D(pointCorner,point1,&len1);
90 pointSym2->x = pointCorner.x + alpha*(point1.x - pointCorner.x);
91 pointSym2->y = pointCorner.y + alpha*(point1.y - pointCorner.y);
92 pointSym2->z = pointCorner.z + alpha*(point1.z - pointCorner.z);
210 CvPoint2D64d point1;
222 point1.x = (1.0 - alpha) * quad1[0][0] + alpha * quad1[3][0];
223 point1.y = (1.0 - alpha) * quad1[0][1] + alpha * quad1[3][1];
235 icvComCoeffForLine( point1,
339 int icvComCoeffForLine( CvPoint2D64d point1,
365 icvGetDirectionForPoint( point1,
667 int icvGetAngleLine( CvPoint2D64d startPoint, CvSize imageSize,CvPoint2D64d *point1,CvPoint2D64d *point2)
694 *point1 = pb;
699 *point1 = pa;
704 *point1 = pa;
712 *point1 = pa;
717 *point1 = pb;
722 *point1 = pb;
732 *point1 = pb;
737 *point1 = pa;
745 *point1 = pc;
750 *point1 = pd;
1151 void icvGetPieceLength(CvPoint2D64d point1,CvPoint2D64d point2,double* dist)
1153 double dx = point2.x - point1.x;
1154 double dy = point2.y - point1.y;
1161 void icvGetPieceLength3D(CvPoint3D64d point1,CvPoint3D64d point2,double* dist)
1163 double dx = point2.x - point1.x;
1164 double dy = point2.y - point1.y;
1165 double dz = point2.z - point1.z;
2002 CvPoint2D64d point1,CvPoint2D64d point2,
2008 icvGetPieceLength(basePoint,point1,&dist1);
2017 pointNew2.x = basePoint.x + alpha * ( point1.x - basePoint.x );
2018 pointNew2.y = basePoint.y + alpha * ( point1.y - basePoint.y );
2021 icvGetCrossPiecePiece(point1,point2,pointNew1,pointNew2,midPoint,&res);
2037 CV_IMPL double icvGetVect(CvPoint2D64d basePoint,CvPoint2D64d point1,CvPoint2D64d point2)
2039 return (point1.x - basePoint.x)*(point2.y - basePoint.y) -
2040 (point2.x - basePoint.x)*(point1.y - basePoint.y);
2051 CvPoint2D64d point1,point2;
2053 icvProjectPointToDirect(testPoint,line1,&point1);
2056 double sign1 = icvGetVect(basePoint,point1,point2);
2057 double sign2 = icvGetVect(basePoint,point1,testPoint);
2274 int GetAngleLinee( CvPoint2D32f epipole, CvSize imageSize,CvPoint2D32f point1,CvPoint2D32f point2)
2308 point1 = pb;
2313 point1 = pa;
2318 point1 = pa;
2326 point1 = pa;
2331 point1 = pc;
2336 point1 = pb;
2344 point1 = pa;
2349 point1 = pc;
2612 CvPoint2D32f point1,
2619 p1[0] = (double)(point1.x);
2620 p1[1] = (double)(point1.y);
2660 CvPoint2D32f* point1,
2695 point1->x = (float)(projP[0] / projP[2]);
2696 point1->y = (float)(projP[1] / projP[2]);
3025 float icvDefinePointPosition(CvPoint2D32f point1,CvPoint2D32f point2,CvPoint2D32f point)
3027 float ax = point2.x - point1.x;
3028 float ay = point2.y - point1.y;
3030 float bx = point.x - point1.x;
3031 float by = point.y - point1.y;