Removes edge from graph
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
public void GraphRemoveEdgeByPtr(
CvGraphVtx startVtx,
CvGraphVtx endVtx
)
Public Sub GraphRemoveEdgeByPtr (
startVtx As CvGraphVtx,
endVtx As CvGraphVtx
)
public:
void GraphRemoveEdgeByPtr(
CvGraphVtx^ startVtx,
CvGraphVtx^ endVtx
)
member GraphRemoveEdgeByPtr :
startVtx : CvGraphVtx *
endVtx : CvGraphVtx -> unit
Parameters
- 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.
The function cvGraphRemoveEdgeByPtr removes the edge connecting two specified vertices. If the vertices are not connected [in that order], the function does nothing.
Reference