Subdiv2D Constructor (PointF, Boolean) |
http://www.emgu.com
Create a planar subdivision from the given points. The ROI is computed as the minimum bounding Rectangle for the input points
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic Subdiv2D(
PointF[] points,
bool silent = false
)
Public Sub New (
points As PointF(),
Optional silent As Boolean = false
)
public:
Subdiv2D(
array<PointF>^ points,
bool silent = false
)
new :
points : PointF[] *
?silent : bool
(* Defaults:
let _silent = defaultArg silent false
*)
-> Subdiv2D
Parameters
- points
- Type: System.DrawingPointF
The points to be inserted to this planar subdivision - silent (Optional)
- Type: SystemBoolean
If true, any exception during insert will be ignored
See Also