CvSolvePoly Method (CvMat, CvMat, Int32, Int32) OpenCvSharp Class Library
Finds real and complex roots of a polynomial equation with real coefficients

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public static void SolvePoly(
	CvMat coeffs,
	CvMat roots,
	int maxiter,
	int fig
)

Parameters

coeffs
Type: OpenCvSharpCvMat
The (degree + 1)-length array of equation coefficients (CV_32FC1 or CV_64FC1).
roots
Type: OpenCvSharpCvMat
The degree-length output array of real or complex roots (CV_32FC2 or CV_64FC2).
maxiter
Type: SystemInt32
The maximum number of iterations.
fig
Type: SystemInt32
The required figures of precision required.
See Also

Reference