AlgorithmExtensionsWrite Method (IAlgorithm, FileStorage, String) |
http://www.emgu.com
Stores algorithm parameters in a file storage
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void Write(
this IAlgorithm algorithm,
FileStorage storage,
string name
)
<ExtensionAttribute>
Public Shared Sub Write (
algorithm As IAlgorithm,
storage As FileStorage,
name As String
)
public:
[ExtensionAttribute]
static void Write(
IAlgorithm^ algorithm,
FileStorage^ storage,
String^ name
)
[<ExtensionAttribute>]
static member Write :
algorithm : IAlgorithm *
storage : FileStorage *
name : string -> unit
Parameters
- algorithm
- Type: Emgu.CVIAlgorithm
The algorithm. - storage
- Type: Emgu.CVFileStorage
The storage. - name
- Type: SystemString
The name of the node
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