Lines Matching refs:CvPoint2D32f
64 CvPoint2D32f site_first_pt;
65 CvPoint2D32f site_last_pt;
250 void _cvProjectionPointToSegment(CvPoint2D32f* PointO,
251 CvPoint2D32f* PointA,
252 CvPoint2D32f* PointB,
253 CvPoint2D32f* PrPoint,
589 sizeof(CvPoint2D32f),pLCM->ContourStorage); in _cvCreateLCMNode()
599 pLCMEdge->chain = cvCreateSeq(0, sizeof(CvSeq),sizeof(CvPoint2D32f),pLCM->EdgeStorage); in _cvCreateLCMEdge()
690 void _cvProjectionPointToSegment(CvPoint2D32f* PointO, in _cvProjectionPointToSegment()
691 CvPoint2D32f* PointA, in _cvProjectionPointToSegment()
692 CvPoint2D32f* PointB, in _cvProjectionPointToSegment()
693 CvPoint2D32f* PrPoint, in _cvProjectionPointToSegment()
697 CvPoint2D32f VectorAB = {PointB->x - PointA->x, PointB->y - PointA->y}; in _cvProjectionPointToSegment()
707 CvPoint2D32f VectorAO = {PointO->x - PointA->x, PointO->y - PointA->y}; in _cvProjectionPointToSegment()