LatentSvmDetector Constructor |
http://www.emgu.com
Load the trained detector from files
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic LatentSvmDetector(
string[] fileNames,
string[] classNames = null
)
Public Sub New (
fileNames As String(),
Optional classNames As String() = Nothing
)
public:
LatentSvmDetector(
array<String^>^ fileNames,
array<String^>^ classNames = nullptr
)
new :
fileNames : string[] *
?classNames : string[]
(* Defaults:
let _classNames = defaultArg classNames null
*)
-> LatentSvmDetector
Parameters
- fileNames
- Type: SystemString
The names of the trained latent svm file - classNames (Optional)
- Type: SystemString
The names of the class
See Also