GraphSegmentation Constructor |
http://www.emgu.com
Creates a graph based segmentor.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic GraphSegmentation(
double sigma = 0.5,
float k = 300f,
int minSize = 100
)
Public Sub New (
Optional sigma As Double = 0.5,
Optional k As Single = 300F,
Optional minSize As Integer = 100
)
public:
GraphSegmentation(
double sigma = 0.5,
float k = 300f,
int minSize = 100
)
new :
?sigma : float *
?k : float32 *
?minSize : int
(* Defaults:
let _sigma = defaultArg sigma 0.5
let _k = defaultArg k 300f
let _minSize = defaultArg minSize 100
*)
-> GraphSegmentation
Parameters
- sigma (Optional)
- Type: SystemDouble
The sigma parameter, used to smooth image - k (Optional)
- Type: SystemSingle
The k parameter of the algorithm - minSize (Optional)
- Type: SystemInt32
The minimum size of segments
See Also