Subdiv2DGetDelaunayTriangles Method |
http://www.emgu.com
Returns the triangles subdivision of the current planar subdivision.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic Triangle2DF[] GetDelaunayTriangles(
bool includeVirtualPoints = false
)
Public Function GetDelaunayTriangles (
Optional includeVirtualPoints As Boolean = false
) As Triangle2DF()
public:
array<Triangle2DF>^ GetDelaunayTriangles(
bool includeVirtualPoints = false
)
member GetDelaunayTriangles :
?includeVirtualPoints : bool
(* Defaults:
let _includeVirtualPoints = defaultArg includeVirtualPoints false
*)
-> Triangle2DF[]
Parameters
- includeVirtualPoints (Optional)
- Type: SystemBoolean
If true, will include the virtual points in the resulting triangles
Return Value
Type:
Triangle2DFThe triangles subdivision in the current planar subdivision
RemarksThe triangles might contains virtual points that do not belongs to the inserted points, if you do not want those points, set includeVirtualPoints
See Also