getVoronoiFacetList method
Returns a list of all Voronoi facets.
https://docs.opencv.org/4.x/df/dbf/classcv_1_1Subdiv2D.html#a3a9e080423475be056a79da4c04741ea
Implementation
(VecVecPoint2f facetList, VecPoint2f facetCenters) getVoronoiFacetList(VecI32 idx) {
return using<(VecVecPoint2f, VecPoint2f)>((arena) {
final pf = calloc<cimgproc.VecVecPoint2f>();
final pfc = calloc<cimgproc.VecPoint2f>();
cvRun(() => cimgproc.Subdiv2D_GetVoronoiFacetList(ref, idx.ref, pf, pfc));
return (VecVecPoint2f.fromPointer(pf), VecPoint2f.fromPointer(pfc));
});
}