| GraphSegmentationCreate Method |
Creates a graph based segmentor
Namespace:
OpenCvSharp.XImgProc.Segmentation
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static GraphSegmentation Create(
double sigma = 0.5,
float k = 300f,
int minSize = 100
)
Public Shared Function Create (
Optional sigma As Double = 0.5,
Optional k As Single = 300F,
Optional minSize As Integer = 100
) As GraphSegmentation
public:
static GraphSegmentation^ Create(
double sigma = 0.5,
float k = 300f,
int minSize = 100
)
static member Create :
?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
Return Value
Type:
GraphSegmentation[Missing <returns> documentation for "M:OpenCvSharp.XImgProc.Segmentation.GraphSegmentation.Create(System.Double,System.Single,System.Int32)"]
See Also