SupperpixelSLICIterate Method |
http://www.emgu.com
Calculates the superpixel segmentation on a given image with the initialized parameters in the SuperpixelSLIC object.
This function can be called again without the need of initializing the algorithm with createSuperpixelSLIC(). This save the computational cost of allocating memory for all the structures of the algorithm.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
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