SVD class
SVDCompute decomposes matrix and stores the results to user-provided matrices
https://docs.opencv.org/4.1.2/df/df7/classcv_1_1SVD.html#a76f0b2044df458160292045a3d3714c6
Constructors
- SVD()
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
backSubst(
Mat w, Mat u, Mat vt, Mat rhs, {Mat? dst}) → Mat -
backSubstAsync(
Mat w, Mat u, Mat vt, Mat rhs, {Mat? dst}) → Future< Mat> -
compute(
Mat src, {Mat? w, Mat? u, Mat? vt, int flags = 0}) → (Mat, Mat, Mat) - decomposes matrix and stores the results to user-provided matrices The methods/functions perform SVD of matrix.
-
computeAsync(
Mat src, {Mat? w, Mat? u, Mat? vt, int flags = 0}) → Future< (Mat, Mat, Mat)> - async version of compute