Click or drag to resize

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
)

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