NativeMatFileIOWriteMatToFile Method |
http://www.emgu.com
Write a Mat into a file using native implementations
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static bool WriteMatToFile(
Mat mat,
string fileName
)
Public Shared Function WriteMatToFile (
mat As Mat,
fileName As String
) As Boolean
public:
static bool WriteMatToFile(
Mat^ mat,
String^ fileName
)
static member WriteMatToFile :
mat : Mat *
fileName : string -> bool
Parameters
- mat
- Type: Emgu.CVMat
The Mat to be written - fileName
- Type: SystemString
The name of the file
Return Value
Type:
BooleanTrue if successful
See Also