FaceInvokeLoadModel Method |
http://www.emgu.com
A function to load the trained model before the fitting process.
Namespace:
Emgu.CV.Face
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static void LoadModel(
this IFacemark facemark,
string model
)
<ExtensionAttribute>
Public Shared Sub LoadModel (
facemark As IFacemark,
model As String
)
public:
[ExtensionAttribute]
static void LoadModel(
IFacemark^ facemark,
String^ model
)
[<ExtensionAttribute>]
static member LoadModel :
facemark : IFacemark *
model : string -> unit
Parameters
- facemark
- Type: Emgu.CV.FaceIFacemark
The facemark object - model
- Type: SystemString
A string represent the filename of a trained model.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IFacemark. 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