MatAssignTo Method (Mat, MatType)
|
Provides a functional form of convertTo.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic void AssignTo(
Mat m,
MatType type
)
Public Sub AssignTo (
m As Mat,
type As MatType
)
public:
void AssignTo(
Mat^ m,
MatType type
)
member AssignTo :
m : Mat *
type : MatType -> unit
function AssignTo(m, type);
Parameters
- m
- Type: OpenCvSharpMat
Destination array. - type
- Type: OpenCvSharpMatType
Desired destination array depth (or -1 if it should be the same as the source type).
See Also