Subdiv2DGetVoronoiFacets Method |
http://www.emgu.com
Obtains the list of Voronoi Facets
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic VoronoiFacet[] GetVoronoiFacets(
int[] idx = null
)
Public Function GetVoronoiFacets (
Optional idx As Integer() = Nothing
) As VoronoiFacet()
public:
array<VoronoiFacet^>^ GetVoronoiFacets(
array<int>^ idx = nullptr
)
member GetVoronoiFacets :
?idx : int[]
(* Defaults:
let _idx = defaultArg idx null
*)
-> VoronoiFacet[]
Parameters
- idx (Optional)
- Type: SystemInt32
Vector of vertices IDs to consider. For all vertices you can pass empty vector.
Return Value
Type:
VoronoiFacetThe list of Voronoi Facets
See Also