AlgorithmExtensionsLoad Method |
http://www.emgu.com
Loads algorithm from the file
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void Load(
this IAlgorithm algorithm,
string fileName,
string objName = null,
string encoding = null
)
<ExtensionAttribute>
Public Shared Sub Load (
algorithm As IAlgorithm,
fileName As String,
Optional objName As String = Nothing,
Optional encoding As String = Nothing
)
public:
[ExtensionAttribute]
static void Load(
IAlgorithm^ algorithm,
String^ fileName,
String^ objName = nullptr,
String^ encoding = nullptr
)
[<ExtensionAttribute>]
static member Load :
algorithm : IAlgorithm *
fileName : string *
?objName : string *
?encoding : string
(* Defaults:
let _objName = defaultArg objName null
let _encoding = defaultArg encoding null
*)
-> unit
Parameters
- algorithm
- Type: Emgu.CVIAlgorithm
The algorithm - fileName
- Type: SystemString
Name of the file to read. - objName (Optional)
- Type: SystemString
The optional name of the node to read (if empty, the first top-level node will be used) - encoding (Optional)
- Type: SystemString
Encoding of the file. Note that UTF-16 XML encoding is not supported currently and
you should use 8-bit encoding instead of it.
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