StatModelExtensionsSave Method |
http://www.emgu.com
Save the statistic model to file
Namespace: Emgu.CV.MLAssembly: Emgu.CV.ML (in Emgu.CV.ML.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void Save(
this IStatModel model,
string fileName
)
<ExtensionAttribute>
Public Shared Sub Save (
model As IStatModel,
fileName As String
)
public:
[ExtensionAttribute]
static void Save(
IStatModel^ model,
String^ fileName
)
static member Save :
model : IStatModel *
fileName : string -> unit
Parameters
- model
- Type: Emgu.CV.MLIStatModel
The StatModel - fileName
- Type: SystemString
The file name where this StatModel will be saved
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IStatModel. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also