CvInvokeLoadUnmanagedModules Method |
http://www.emgu.com
Attempts to load opencv modules from the specific location
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static bool LoadUnmanagedModules(
string loadDirectory,
params string[] unmanagedModules
)
Public Shared Function LoadUnmanagedModules (
loadDirectory As String,
ParamArray unmanagedModules As String()
) As Boolean
public:
static bool LoadUnmanagedModules(
String^ loadDirectory,
... array<String^>^ unmanagedModules
)
static member LoadUnmanagedModules :
loadDirectory : string *
unmanagedModules : string[] -> bool
Parameters
- loadDirectory
- Type: SystemString
The directory where the unmanaged modules will be loaded. If it is null, the default location will be used. - unmanagedModules
- Type: SystemString
The names of opencv modules. e.g. "opencv_cxcore.dll" on windows.
Return Value
Type:
BooleanTrue if all the modules has been loaded successfully
RemarksIf loadDirectory is null, the default location on windows is the dll's path appended by either "x64" or "x86", depends on the applications current mode.
See Also