| ANN_MLPLoad Method |
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: 1.0.0
Syntax public 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
Parameters
- filePath
- Type: SystemString
path to serialized ANN
Return Value
Type:
ANN_MLP[Missing <returns> documentation for "M:OpenCvSharp.ML.ANN_MLP.Load(System.String)"]
See Also