Loads and creates a serialized ANN from a file.
Use ANN::save to serialize and store an ANN to disk.
Load the ANN from this file again, by calling this function with the path to the file.
Namespace:
OpenCvSharp.ML
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static ANN_MLP Load(
string filePath
)
Public Shared Function Load (
filePath As String
) As ANN_MLP
public:
static ANN_MLP^ Load(
String^ filePath
)
static member Load :
filePath : string -> ANN_MLP
OpenCvSharp.ML.ANN_MLP.Load = function(filePath);
Parameters
- filePath
- Type: SystemString
Return Value
Type:
ANN_MLP
See Also