| Subdiv2DGetVoronoiFacetList Method |
Returns a list of all Voronoi facets.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public void GetVoronoiFacetList(
IEnumerable<int> idx,
out Point2f[][] facetList,
out Point2f[] facetCenters
)
Public Sub GetVoronoiFacetList (
idx As IEnumerable(Of Integer),
<OutAttribute> ByRef facetList As Point2f()(),
<OutAttribute> ByRef facetCenters As Point2f()
)
public:
void GetVoronoiFacetList(
IEnumerable<int>^ idx,
[OutAttribute] array<array<Point2f>^>^% facetList,
[OutAttribute] array<Point2f>^% facetCenters
)
member GetVoronoiFacetList :
idx : IEnumerable<int> *
facetList : Point2f[][] byref *
facetCenters : Point2f[] byref -> unit
Parameters
- idx
- Type: System.Collections.GenericIEnumerableInt32
Vector of vertices IDs to consider. For all vertices you can pass empty vector. - facetList
- Type: OpenCvSharpPoint2f
Output vector of the Voronoi facets. - facetCenters
- Type: OpenCvSharpPoint2f
Output vector of the Voronoi facets center points.
See Also