Home | History | Annotate | Download | only in src

Lines Matching refs:CvPoint2D32f

68 double _cvBendingWork(  CvPoint2D32f* B0,
69 CvPoint2D32f* F0,
70 CvPoint2D32f* B1,
71 CvPoint2D32f* F1/*,
74 double _cvStretchingWork(CvPoint2D32f* P1,
75 CvPoint2D32f* P2);
77 void _cvWorkEast (int i, int j, _CvWork** W, CvPoint2D32f* edges1, CvPoint2D32f* edges2);
78 void _cvWorkSouthEast(int i, int j, _CvWork** W, CvPoint2D32f* edges1, CvPoint2D32f* edges2);
79 void _cvWorkSouth (int i, int j, _CvWork** W, CvPoint2D32f* edges1, CvPoint2D32f* edges2);
81 static CvPoint2D32f null_edge = {0,0};
83 double _cvStretchingWork(CvPoint2D32f* P1,
84 CvPoint2D32f* P2)
99 double _cvBendingWork( CvPoint2D32f* B0,
100 CvPoint2D32f* F0,
101 CvPoint2D32f* B1,
102 CvPoint2D32f* F1/*,
105 CvPoint2D32f Q( CvPoint2D32f q0, CvPoint2D32f q1, CvPoint2D32f q2, double t );
106 double angle( CvPoint2D32f A, CvPoint2D32f B );
108 CvPoint2D32f Q0, Q1, Q2;
109 CvPoint2D32f Q1_nm = { 0, 0 }, Q2_nm = { 0, 0 };
112 CvPoint2D32f center;
382 void _cvWorkEast(int i, int j, _CvWork** W, CvPoint2D32f* edges1, CvPoint2D32f* edges2)
385 CvPoint2D32f small_edge;
420 void _cvWorkSouthEast(int i, int j, _CvWork** W, CvPoint2D32f* edges1, CvPoint2D32f* edges2)
423 CvPoint2D32f small_edge;
480 void _cvWorkSouth(int i, int j, _CvWork** W, CvPoint2D32f* edges1, CvPoint2D32f* edges2)
483 CvPoint2D32f small_edge;
515 CvPoint2D32f Q(CvPoint2D32f q0,CvPoint2D32f q1,CvPoint2D32f q2,double t)
517 CvPoint2D32f q;
525 double angle(CvPoint2D32f A, CvPoint2D32f B)
635 CvPoint2D32f* edges1; // array of first contour edge
636 CvPoint2D32f* edges2; // array of second contour edge
639 CvPoint2D32f small_edge;
660 edges1 = (CvPoint2D32f* )malloc( (Ni-1)*sizeof(CvPoint2D32f) );
661 edges2 = (CvPoint2D32f* )malloc( (Nj-1)*sizeof(CvPoint2D32f) );