MCPcopy Create free account
hub / github.com/creatale/node-dv / cvClearGraph

Function cvClearGraph

deps/opencv/modules/core/src/datastructs.cpp:2594–2602  ·  view source on GitHub ↗

Remove all vertices and edges from a graph: */

Source from the content-addressed store, hash-verified

2592
2593/* Remove all vertices and edges from a graph: */
2594CV_IMPL void
2595cvClearGraph( CvGraph * graph )
2596{
2597 if( !graph )
2598 CV_Error( CV_StsNullPtr, "" );
2599
2600 cvClearSet( graph->edges );
2601 cvClearSet( (CvSet*)graph );
2602}
2603
2604
2605/* Add a vertex to a graph: */

Callers 1

core_c.hFile · 0.85

Calls 1

cvClearSetFunction · 0.85

Tested by

no test coverage detected