Click or drag to resize

AlgorithmExtensionsLoadFromString Method

http://www.emgu.com
Loads algorithm from a String

Namespace:  Emgu.CV
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void LoadFromString(
	this IAlgorithm algorithm,
	string strModel,
	string objName = null,
	string encoding = null
)

Parameters

algorithm
Type: Emgu.CVIAlgorithm
The algorithm
strModel
Type: SystemString
The string variable containing the model you want to load.
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