Home
last modified time | relevance | path

Searched refs:basePoint (Results 1 – 2 of 2) sorted by relevance

/external/opencv/cvaux/src/
Dcvepilines.cpp70 CvPoint2D64d basePoint,
2001 void icvGetMiddleAnglePoint( CvPoint2D64d basePoint, in icvGetMiddleAnglePoint() argument
2008 icvGetPieceLength(basePoint,point1,&dist1); in icvGetMiddleAnglePoint()
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()
2017 pointNew2.x = basePoint.x + alpha * ( point1.x - basePoint.x ); in icvGetMiddleAnglePoint()
2018 pointNew2.y = basePoint.y + alpha * ( point1.y - basePoint.y ); 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()
[all …]
/external/opencv/cvaux/include/
Dcvaux.h712 CVAPI(void) icvGetMiddleAnglePoint( CvPoint2D64f basePoint,
718 CVAPI(double) icvGetVect(CvPoint2D64f basePoint,CvPoint2D64f point1,CvPoint2D64f point2);