Searched refs:CvSubdiv2DEdge (Results 1 – 7 of 7) sorted by relevance
/external/opencv/cv/src/ |
D | cvsubdivision2d.cpp | 75 static CvSubdiv2DEdge 79 CvSubdiv2DEdge edgehandle = 0; in cvSubdiv2DMakeEdge() 92 edgehandle = (CvSubdiv2DEdge) edge; in cvSubdiv2DMakeEdge() 127 cvSubdiv2DSplice( CvSubdiv2DEdge edgeA, CvSubdiv2DEdge edgeB ) in cvSubdiv2DSplice() 129 CvSubdiv2DEdge *a_next = &CV_SUBDIV2D_NEXT_EDGE( edgeA ); in cvSubdiv2DSplice() 130 CvSubdiv2DEdge *b_next = &CV_SUBDIV2D_NEXT_EDGE( edgeB ); in cvSubdiv2DSplice() 131 CvSubdiv2DEdge a_rot = cvSubdiv2DRotateEdge( *a_next, 1 ); in cvSubdiv2DSplice() 132 CvSubdiv2DEdge b_rot = cvSubdiv2DRotateEdge( *b_next, 1 ); in cvSubdiv2DSplice() 133 CvSubdiv2DEdge *a_rot_next = &CV_SUBDIV2D_NEXT_EDGE( a_rot ); in cvSubdiv2DSplice() 134 CvSubdiv2DEdge *b_rot_next = &CV_SUBDIV2D_NEXT_EDGE( b_rot ); in cvSubdiv2DSplice() [all …]
|
D | _cvgeom.h | 60 void icvCreateCenterNormalLine( CvSubdiv2DEdge edge, double* a, double* b, double* c );
|
D | cvgeometry.cpp | 130 icvCreateCenterNormalLine( CvSubdiv2DEdge edge, double *_a, double *_b, double *_c ) in icvCreateCenterNormalLine()
|
/external/opencv/cvaux/src/ |
D | cvsubdiv2.cpp | 65 CvSubdiv2DEdge e = (CvSubdiv2DEdge)edge + j; in icvSubdiv2DCheck() 66 CvSubdiv2DEdge o_next = cvSubdiv2DNextEdge(e); in icvSubdiv2DCheck() 67 CvSubdiv2DEdge o_prev = cvSubdiv2DGetEdge(e, CV_PREV_AROUND_ORG ); in icvSubdiv2DCheck() 68 CvSubdiv2DEdge d_prev = cvSubdiv2DGetEdge(e, CV_PREV_AROUND_DST ); in icvSubdiv2DCheck() 69 CvSubdiv2DEdge d_next = cvSubdiv2DGetEdge(e, CV_NEXT_AROUND_DST ); in icvSubdiv2DCheck() 107 draw_subdiv_facet( CvSubdiv2D * subdiv, IplImage * dst, IplImage * src, CvSubdiv2DEdge edge ) in draw_subdiv_facet() 109 CvSubdiv2DEdge t = edge; in draw_subdiv_facet() 177 CvSubdiv2DEdge e = (CvSubdiv2DEdge) edge; in icvDrawMosaic()
|
D | decomppoly.cpp | 597 ( ( CvSubdiv2DEdge )edgesPtrs[ refer[ i * 4 ] >> 2 ] ) 600 ( ( CvSubdiv2DEdge )edgesPtrs[ refer[ i * 4 + 1 ] >> 2 ] ) 603 ( ( CvSubdiv2DEdge )edgesPtrs[ refer[ i * 4 + 2 ] >> 2 ] ) 606 ( ( CvSubdiv2DEdge )edgesPtrs[ refer[ i * 4 + 3 ] >> 2 ] )
|
/external/opencv/cv/include/ |
D | cvtypes.h | 136 typedef size_t CvSubdiv2DEdge; typedef 141 CvSubdiv2DEdge next[4]; 145 CvSubdiv2DEdge first; \ 166 CvSubdiv2DEdge recent_edge; \
|
D | cv.h | 647 CvSubdiv2DEdge* edge, in LOAD_CHDL() 664 CV_INLINE CvSubdiv2DEdge cvSubdiv2DNextEdge( CvSubdiv2DEdge edge ) in LOAD_CHDL() 670 CV_INLINE CvSubdiv2DEdge cvSubdiv2DRotateEdge( CvSubdiv2DEdge edge, int rotate ) in LOAD_CHDL() 675 CV_INLINE CvSubdiv2DEdge cvSubdiv2DSymEdge( CvSubdiv2DEdge edge ) in LOAD_CHDL() 680 CV_INLINE CvSubdiv2DEdge cvSubdiv2DGetEdge( CvSubdiv2DEdge edge, CvNextEdgeType type ) in LOAD_CHDL() 688 CV_INLINE CvSubdiv2DPoint* cvSubdiv2DEdgeOrg( CvSubdiv2DEdge edge ) in LOAD_CHDL() 695 CV_INLINE CvSubdiv2DPoint* cvSubdiv2DEdgeDst( CvSubdiv2DEdge edge ) in LOAD_CHDL()
|