| SuperpixelSEEDSIterate Method |
Input image. Supported formats: CV_8U, CV_16U, CV_32F. Image size & number of
channels must match with the initialized image size & channels with the function
createSuperpixelSEEDS(). It should be in HSV or Lab color space.Lab is a bit better, but also slower.
Namespace:
OpenCvSharp.XImgProc
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public virtual void Iterate(
InputArray img,
int numIterations = 10
)
Public Overridable Sub Iterate (
img As InputArray,
Optional numIterations As Integer = 10
)
public:
virtual void Iterate(
InputArray^ img,
int numIterations = 10
)
abstract Iterate :
img : InputArray *
?numIterations : int
(* Defaults:
let _numIterations = defaultArg numIterations 10
*)
-> unit
override Iterate :
img : InputArray *
?numIterations : int
(* Defaults:
let _numIterations = defaultArg numIterations 10
*)
-> unit
Parameters
- img
- Type: OpenCvSharpInputArray
Supported formats: CV_8U, CV_16U, CV_32F. Image size & number of
channels must match with the initialized image size & channels with the function
createSuperpixelSEEDS(). It should be in HSV or Lab color space.Lab is a bit better, but also slower. - numIterations (Optional)
- Type: SystemInt32
Number of pixel level iterations. Higher number improves the result.
See Also