Searched refs:start_vtx (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/modules/core/src/ |
D | datastructs.cpp | 2694 const CvGraphVtx* start_vtx, in cvFindGraphEdgeByPtr() argument 2699 if( !graph || !start_vtx || !end_vtx ) in cvFindGraphEdgeByPtr() 2702 if( start_vtx == end_vtx ) in cvFindGraphEdgeByPtr() 2706 (start_vtx->flags & CV_SET_ELEM_IDX_MASK) > (end_vtx->flags & CV_SET_ELEM_IDX_MASK) ) in cvFindGraphEdgeByPtr() 2709 CV_SWAP( start_vtx, end_vtx, t ); in cvFindGraphEdgeByPtr() 2712 CvGraphEdge* edge = start_vtx->first; in cvFindGraphEdgeByPtr() 2715 ofs = start_vtx == edge->vtx[1]; in cvFindGraphEdgeByPtr() 2716 assert( ofs == 1 || start_vtx == edge->vtx[0] ); in cvFindGraphEdgeByPtr() 2729 CvGraphVtx *start_vtx; in cvFindGraphEdge() local 2735 start_vtx = cvGetGraphVtx( graph, start_idx ); in cvFindGraphEdge() [all …]
|
/external/opencv/cxcore/src/ |
D | cxdatastructs.cpp | 3033 const CvGraphVtx* start_vtx, in cvFindGraphEdgeByPtr() argument 3043 if( !graph || !start_vtx || !end_vtx ) in cvFindGraphEdgeByPtr() 3046 if( start_vtx == end_vtx ) in cvFindGraphEdgeByPtr() 3050 (start_vtx->flags & CV_SET_ELEM_IDX_MASK) > (end_vtx->flags & CV_SET_ELEM_IDX_MASK) ) in cvFindGraphEdgeByPtr() 3053 CV_SWAP( start_vtx, end_vtx, t ); in cvFindGraphEdgeByPtr() 3056 edge = start_vtx->first; in cvFindGraphEdgeByPtr() 3059 ofs = start_vtx == edge->vtx[1]; in cvFindGraphEdgeByPtr() 3060 assert( ofs == 1 || start_vtx == edge->vtx[0] ); in cvFindGraphEdgeByPtr() 3076 CvGraphVtx *start_vtx; in cvFindGraphEdge() local 3086 start_vtx = cvGetGraphVtx( graph, start_idx ); in cvFindGraphEdge() [all …]
|
/external/opencv/cxcore/include/ |
D | cxcore.h | 1180 CvGraphVtx* start_vtx, CvGraphVtx* end_vtx, 1186 CVAPI(void) cvGraphRemoveEdgeByPtr( CvGraph* graph, CvGraphVtx* start_vtx, 1192 const CvGraphVtx* start_vtx,
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | core_c.h | 1801 CvGraphVtx* start_vtx, CvGraphVtx* end_vtx, 1807 CVAPI(void) cvGraphRemoveEdgeByPtr( CvGraph* graph, CvGraphVtx* start_vtx, 1813 const CvGraphVtx* start_vtx,
|
/external/opencv3/modules/core/test/ |
D | test_ds.cpp | 2057 … CvGraphVtx* start_vtx = cvtest::randInt(rng) % 2 || graph->active_count == 0 ? 0 : in run() local 2060 scanner = cvCreateGraphScanner( graph, start_vtx, CV_GRAPH_ALL_ITEMS ); in run()
|