AlgorithmExtensionsSave Method |
http://www.emgu.com
Save the algorithm to file
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void Save(
this IAlgorithm algorithm,
string fileName
)
<ExtensionAttribute>
Public Shared Sub Save (
algorithm As IAlgorithm,
fileName As String
)
public:
[ExtensionAttribute]
static void Save(
IAlgorithm^ algorithm,
String^ fileName
)
[<ExtensionAttribute>]
static member Save :
algorithm : IAlgorithm *
fileName : string -> unit
Parameters
- algorithm
- Type: Emgu.CVIAlgorithm
The algorithm - fileName
- Type: SystemString
The file name where this algorithm will be saved to
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IAlgorithm. 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