| SVMLoad Method |
Loads and creates a serialized svm from a file.
Use SVM::save to serialize and store an SVM to disk.
Load the SVM 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 SVM Load(
string filePath
)
Public Shared Function Load (
filePath As String
) As SVM
public:
static SVM^ Load(
String^ filePath
)
static member Load :
filePath : string -> SVM
Parameters
- filePath
- Type: SystemString
[Missing <param name="filePath"/> documentation for "M:OpenCvSharp.ML.SVM.Load(System.String)"]
Return Value
Type:
SVM[Missing <returns> documentation for "M:OpenCvSharp.ML.SVM.Load(System.String)"]
See Also