MatOfFloatFromArray Method (IEnumerableSingle)
|
Initializes as N x 1 matrix and copys array data to this
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static MatOfFloat FromArray(
IEnumerable<float> enumerable
)
Public Shared Function FromArray (
enumerable As IEnumerable(Of Single)
) As MatOfFloat
public:
static MatOfFloat^ FromArray(
IEnumerable<float>^ enumerable
)
static member FromArray :
enumerable : IEnumerable<float32> -> MatOfFloat
OpenCvSharp.MatOfFloat.FromArray = function(enumerable);
Parameters
- enumerable
- Type: System.Collections.GenericIEnumerableSingle
Source array data to be copied to this
Return Value
Type:
MatOfFloat
See Also