SelectiveSearchSegmentationSwitchToSelectiveSearchFast Method |
http://www.emgu.com
Initialize the class with the 'Selective search fast' parameters
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic void SwitchToSelectiveSearchFast(
int baseK = 150,
int incK = 150,
float sigma = 0.8f
)
Public Sub SwitchToSelectiveSearchFast (
Optional baseK As Integer = 150,
Optional incK As Integer = 150,
Optional sigma As Single = 0.8F
)
public:
void SwitchToSelectiveSearchFast(
int baseK = 150,
int incK = 150,
float sigma = 0.8f
)
member SwitchToSelectiveSearchFast :
?baseK : int *
?incK : int *
?sigma : float32
(* Defaults:
let _baseK = defaultArg baseK 150
let _incK = defaultArg incK 150
let _sigma = defaultArg sigma 0.8f
*)
-> unit
Parameters
- baseK (Optional)
- Type: SystemInt32
The k parameter for the first graph segmentation - incK (Optional)
- Type: SystemInt32
The increment of the k parameter for all graph segmentations - sigma (Optional)
- Type: SystemSingle
The sigma parameter for the graph segmentation
See Also