CvGraphRemoveEdgeByPtr Method OpenCvSharp Class Library
Removes edge from graph

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public static void GraphRemoveEdgeByPtr(
	CvGraph graph,
	CvGraphVtx startVtx,
	CvGraphVtx endVtx
)

Parameters

graph
Type: OpenCvSharpCvGraph
Graph.
startVtx
Type: OpenCvSharpCvGraphVtx
Starting vertex of the edge.
endVtx
Type: OpenCvSharpCvGraphVtx
Ending vertex of the edge. For unoriented graph the order of the vertex parameters does not matter.
Remarks

The function cvGraphRemoveEdgeByPtr removes the edge connecting two specified vertices. If the vertices are not connected [in that order], the function does nothing.
See Also

Reference