Home
last modified time | relevance | path

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

/external/opencv/cvaux/src/
Dcvvecfacetracking.cpp72 inline double CalculateTransformationLMS3_0( CvPoint* pTemplPoints, CvPoint* pSrcPoints);
74 CvPoint* pSrcPoints,
850 CvPoint* pSrcPoints, in CalculateTransformationLMS3() argument
864 _ASSERT( NULL != pSrcPoints); in CalculateTransformationLMS3()
868 double dbXs = double(pSrcPoints[0].x + pSrcPoints[1].x + pSrcPoints[2].x) / 3.0; in CalculateTransformationLMS3()
869 double dbYs = double(pSrcPoints[0].y + pSrcPoints[1].y + pSrcPoints[2].y) / 3.0; in CalculateTransformationLMS3()
874 …double dbXsXs = double(pow2(pSrcPoints[0].x) + pow2(pSrcPoints[1].x) + pow2(pSrcPoints[2].x)) / 3.… in CalculateTransformationLMS3()
875 …double dbYsYs = double(pow2(pSrcPoints[0].y) + pow2(pSrcPoints[1].y) + pow2(pSrcPoints[2].y)) / 3.… in CalculateTransformationLMS3()
877 double dbXtXs = double(pTemplPoints[0].x * pSrcPoints[0].x + in CalculateTransformationLMS3()
878 pTemplPoints[1].x * pSrcPoints[1].x + in CalculateTransformationLMS3()
[all …]