Home
last modified time | relevance | path

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

/external/opencv/cvaux/src/
Denmin.cpp77 CvGraphVtx vtx;
206 CvGraphVtx* newVtxPtr;
224 CvGraphVtx* vtxPtr;
240 CvGraphVtx* tempVtxPtr = cvGetGraphVtx( graph, i - 1 );
261 CvGraphVtx* tempVtxPtr = cvGetGraphVtx( graph, i + 1 );
295 CvGraphVtx* tempVtxPtr = cvGetGraphVtx( graph, i - 1 );
306 CvGraphVtx* tempVtxPtr = cvGetGraphVtx( graph, i + 1 );
402 CvGraphVtx* graphVtx = cvGetGraphVtx( graph, u );
499 CvGraphVtx* hlpGraphVtxTemp = cvGetGraphVtx( hlpGraph, i );
552 CvGraphVtx* hlpGraphVtx = cvGetGraphVtx( hlpGraph, v );
[all …]
Dcvclique.cpp97 CvGraphVtx* ver = cvGetGraphVtx( graph, i );
115 CvGraphVtx* ver = cvGetGraphVtx( graph, i );
121 CvGraphVtx* v = CV_GET_ADJ_VTX( ver, e );
167 CvGraphVtx* ver1 = cvGetGraphVtx( graph, i );
171 CvGraphVtx* ver2 = cvGetGraphVtx( graph, j );
Dcvlcm.cpp620 LCMEdge->vtx[i] = (CvGraphVtx*)LCMNode; in _cvAttachLCMEdgeToLCMNode()
625 LCMEdge_prev->next[(LCMEdge_prev->vtx[0] != (CvGraphVtx*)LCMNode)] = (CvGraphEdge*)LCMEdge; in _cvAttachLCMEdgeToLCMNode()
/external/opencv3/modules/core/src/
Ddatastructs.cpp2579 || vtx_size < (int) sizeof( CvGraphVtx ) in cvCreateGraph()
2609 cvGraphAddVtx( CvGraph* graph, const CvGraphVtx* _vertex, CvGraphVtx** _inserted_vertex ) in cvGraphAddVtx()
2611 CvGraphVtx *vertex = 0; in cvGraphAddVtx()
2617 vertex = (CvGraphVtx*)cvSetNew((CvSet*)graph); in cvGraphAddVtx()
2621 memcpy( vertex + 1, _vertex + 1, graph->elem_size - sizeof(CvGraphVtx) ); in cvGraphAddVtx()
2635 cvGraphRemoveVtxByPtr( CvGraph* graph, CvGraphVtx* vtx ) in cvGraphRemoveVtxByPtr()
2665 CvGraphVtx *vtx = 0; in cvGraphRemoveVtx()
2694 const CvGraphVtx* start_vtx, in cvFindGraphEdgeByPtr()
2695 const CvGraphVtx* end_vtx ) in cvFindGraphEdgeByPtr()
2708 const CvGraphVtx* t; in cvFindGraphEdgeByPtr()
[all …]
Dpersistence.cpp4448 CvGraphVtx* vtx = (CvGraphVtx*)reader.ptr; in icvWriteGraph()
4462 &attr, sizeof(CvGraphVtx), vtx_dt_buf ); in icvWriteGraph()
4511 memcpy( src_ptr, reader.ptr + sizeof(CvGraphVtx), write_elem_size ); in icvWriteGraph()
4551 ((CvGraphVtx*)reader.ptr)->flags = flag_buf[vtx_count++]; in icvWriteGraph()
4565 CvGraphVtx** vtx_buf = 0; in icvReadGraph()
4569 int vtx_size = sizeof(CvGraphVtx), edge_size, header_size = sizeof(CvGraph); in icvReadGraph()
4674 vtx_buf = (CvGraphVtx**)cvAlloc( vtx_count * sizeof(vtx_buf[0]) ); in icvReadGraph()
4710 CvGraphVtx* vtx; in icvReadGraph()
/external/opencv/cxcore/src/
Dcxdatastructs.cpp2891 || vtx_size < (int) sizeof( CvGraphVtx ) in cvCreateGraph()
2929 cvGraphAddVtx( CvGraph* graph, const CvGraphVtx* _vertex, CvGraphVtx** _inserted_vertex ) in cvGraphAddVtx()
2931 CvGraphVtx *vertex = 0; in cvGraphAddVtx()
2941 vertex = (CvGraphVtx*)cvSetNew((CvSet*)graph); in cvGraphAddVtx()
2946 (size_t)(graph->elem_size - sizeof(CvGraphVtx))/sizeof(int) ); in cvGraphAddVtx()
2962 cvGraphRemoveVtxByPtr( CvGraph* graph, CvGraphVtx* vtx ) in cvGraphRemoveVtxByPtr()
2998 CvGraphVtx *vtx = 0; in cvGraphRemoveVtx()
3033 const CvGraphVtx* start_vtx, in cvFindGraphEdgeByPtr()
3034 const CvGraphVtx* end_vtx ) in cvFindGraphEdgeByPtr()
3052 const CvGraphVtx* t; in cvFindGraphEdgeByPtr()
[all …]
Dcxpersistence.cpp4513 CvGraphVtx* vtx = (CvGraphVtx*)reader.ptr; in icvWriteGraph()
4528 &attr, sizeof(CvGraphVtx), vtx_dt_buf )); in icvWriteGraph()
4577 memcpy( src_ptr, reader.ptr + sizeof(CvGraphVtx), write_elem_size ); in icvWriteGraph()
4617 ((CvGraphVtx*)reader.ptr)->flags = flag_buf[vtx_count++]; in icvWriteGraph()
4633 CvGraphVtx** vtx_buf = 0; in icvReadGraph()
4641 int vtx_size = sizeof(CvGraphVtx), edge_size, header_size = sizeof(CvGraph); in icvReadGraph()
4730 CV_CALL( vtx_buf = (CvGraphVtx**)cvAlloc( vtx_count * sizeof(vtx_buf[0]) )); in icvReadGraph()
4765 CvGraphVtx* vtx; in icvReadGraph()
/external/opencv/cxcore/include/
Dcxcore.h1161 CVAPI(int) cvGraphAddVtx( CvGraph* graph, const CvGraphVtx* vtx CV_DEFAULT(NULL),
1162 CvGraphVtx** inserted_vtx CV_DEFAULT(NULL) );
1167 CVAPI(int) cvGraphRemoveVtxByPtr( CvGraph* graph, CvGraphVtx* vtx );
1180 CvGraphVtx* start_vtx, CvGraphVtx* end_vtx,
1186 CVAPI(void) cvGraphRemoveEdgeByPtr( CvGraph* graph, CvGraphVtx* start_vtx,
1187 CvGraphVtx* end_vtx );
1192 const CvGraphVtx* start_vtx,
1193 const CvGraphVtx* end_vtx );
1203 CVAPI(int) cvGraphVtxDegreeByPtr( const CvGraph* graph, const CvGraphVtx* vtx );
1207 #define cvGetGraphVtx( graph, idx ) (CvGraphVtx*)cvGetSetElem((CvSet*)(graph), (idx))
[all …]
Dcxtypes.h1289 struct CvGraphVtx* vtx[2];
1303 typedef struct CvGraphVtx struct
1307 CvGraphVtx; typedef
/external/opencv3/modules/core/include/opencv2/core/
Dcore_c.h1782 CVAPI(int) cvGraphAddVtx( CvGraph* graph, const CvGraphVtx* vtx CV_DEFAULT(NULL),
1783 CvGraphVtx** inserted_vtx CV_DEFAULT(NULL) );
1788 CVAPI(int) cvGraphRemoveVtxByPtr( CvGraph* graph, CvGraphVtx* vtx );
1801 CvGraphVtx* start_vtx, CvGraphVtx* end_vtx,
1807 CVAPI(void) cvGraphRemoveEdgeByPtr( CvGraph* graph, CvGraphVtx* start_vtx,
1808 CvGraphVtx* end_vtx );
1813 const CvGraphVtx* start_vtx,
1814 const CvGraphVtx* end_vtx );
1824 CVAPI(int) cvGraphVtxDegreeByPtr( const CvGraph* graph, const CvGraphVtx* vtx );
1828 #define cvGetGraphVtx( graph, idx ) (CvGraphVtx*)cvGetSetElem((CvSet*)(graph), (idx))
[all …]
Dtypes_c.h1319 struct CvGraphVtx* vtx[2];
1333 typedef struct CvGraphVtx struct
1337 CvGraphVtx; typedef
/external/opencv3/modules/core/test/
Dtest_ds.cpp1448 CvGraphVtx *vtx = 0, *vtx2 = 0, *vtx3 = 0; in test_graph_ops()
1512 vtx = (CvGraphVtx*)&elem_buf[0]; in test_graph_ops()
1822 int delta = k == 0 ? sizeof(CvGraphVtx) : sizeof(CvGraphEdge); in run()
1884 sizeof(CvGraph), sizeof(CvGraphVtx), in create_random_graph()
1929 …storage_blocksize = MAX(storage_blocksize, (int)(sizeof(CvGraphVtx) + sizeof(CvMemBlock) + sizeof(… in run()
1946 sizeof(CvGraphVtx), sizeof(CvGraphEdge), storage ); in run()
2057CvGraphVtx* start_vtx = cvtest::randInt(rng) % 2 || graph->active_count == 0 ? 0 : in run()
Dtest_io.cpp132 sizeof(CvGraph), sizeof(CvGraphVtx), in run()
/external/opencv/cv/include/
Dcvcompat.h827 CvGraphVtx* vtx CV_DEFAULT(NULL), in cvStartScanGraph()