http://www.emgu.com
create a new dpm detector with the specified files and classes
Namespace:
Emgu.CV.Dpm
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic DpmDetector(
string[] files,
string[] classes = null
)
Public Sub New (
files As String(),
Optional classes As String() = Nothing
)
public:
DpmDetector(
array<String^>^ files,
array<String^>^ classes = nullptr
)
new :
files : string[] *
?classes : string[]
(* Defaults:
let _classes = defaultArg classes null
*)
-> DpmDetector
Parameters
- files
- Type: SystemString
A set of filenames storing the trained detectors (models). Each file contains one model. - classes (Optional)
- Type: SystemString
A set of trained models names. If it's empty then the name of each model will be constructed from the name of file containing the model. E.g. the model stored in "/home/user/cat.xml" will get the name "cat".
See Also