SuperpixelLSCIterate Method |
http://www.emgu.com
Calculates the superpixel segmentation on a given image with the initialized parameters in the SuperpixelLSC object.
This function can be called again without the need of initializing the algorithm with createSuperpixelLSC(). This save the computational cost of allocating memory for all the structures of the algorithm.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic void Iterate(
int numIterations = 10
)
Public Sub Iterate (
Optional numIterations As Integer = 10
)
public:
void Iterate(
int numIterations = 10
)
member Iterate :
?numIterations : int
(* Defaults:
let _numIterations = defaultArg numIterations 10
*)
-> unit
Parameters
- numIterations (Optional)
- Type: SystemInt32
Number of iterations. Higher number improves the result.
See Also