| HOGDescriptorLoad Method |
loads HOGDescriptor parameters and coefficients for the linear SVM classifier from a file.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public virtual bool Load(
string fileName,
string objName = null
)
Public Overridable Function Load (
fileName As String,
Optional objName As String = Nothing
) As Boolean
public:
virtual bool Load(
String^ fileName,
String^ objName = nullptr
)
abstract Load :
fileName : string *
?objName : string
(* Defaults:
let _objName = defaultArg objName null
*)
-> bool
override Load :
fileName : string *
?objName : string
(* Defaults:
let _objName = defaultArg objName null
*)
-> bool
Parameters
- fileName
- Type: SystemString
Path 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).
Return Value
Type:
Boolean[Missing <returns> documentation for "M:OpenCvSharp.HOGDescriptor.Load(System.String,System.String)"]
See Also