Home
last modified time | relevance | path

Searched refs:edge_count (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/core/test/
Dtest_ds.cpp1878 int edge_count = cvtest::randInt(rng) % MAX(vtx_count*20, 1); in create_random_graph() local
1892 for( i = 0; i < edge_count; i++ ) in create_random_graph()
1901 assert( graph->active_count == vtx_count && graph->edges->active_count <= edge_count ); in create_random_graph()
1939 int vtx_count = -1, edge_count = 0, edges[][3] = in run() local
1965 edge_count = i; in run()
1983 edge_count--; in run()
1991 edge_count--; in run()
1999 edge_count--; in run()
2007 edge_count--; in run()
2042 CV_TS_SEQ_CHECK_CONDITION( vtx_count == 0 && edge_count == 0, in run()
/external/opencv/cxcore/src/
Dcxpersistence.cpp4497 int i, k, vtx_count, edge_count; in icvWriteGraph() local
4504 edge_count = cvGraphGetEdgeCount( graph ); in icvWriteGraph()
4532 cvWriteInt( fs, "edge_count", edge_count ); in icvWriteGraph()
4640 int flags, vtx_count, edge_count; in icvReadGraph() local
4658 edge_count = cvReadIntByName( fs, node, "edge_count", -1 ); in icvReadGraph()
4660 if( !flags_str || vtx_count == -1 || edge_count == -1 || !edge_dt ) in icvReadGraph()
4747 int elem_count = k == 0 ? vtx_count : edge_count; in icvReadGraph()
/external/opencv3/modules/core/src/
Dpersistence.cpp4432 int i, k, vtx_count, edge_count; in icvWriteGraph() local
4439 edge_count = cvGraphGetEdgeCount( graph ); in icvWriteGraph()
4466 cvWriteInt( fs, "edge_count", edge_count ); in icvWriteGraph()
4568 int flags, vtx_count, edge_count; in icvReadGraph() local
4586 edge_count = cvReadIntByName( fs, node, "edge_count", -1 ); in icvReadGraph()
4588 if( !flags_str || vtx_count == -1 || edge_count == -1 || !edge_dt ) in icvReadGraph()
4691 int elem_count = k == 0 ? vtx_count : edge_count; in icvReadGraph()
/external/opencv3/modules/stitching/src/
Dseam_finders.cpp1278 const int edge_count = (roi.height - 1 + 2 * gap) * (roi.width + 2 * gap) + in findInPair() local
1280 GCGraph<float> graph(vertex_count, edge_count); in findInPair()