Click or drag to resize

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)
Syntax
public static bool LoadUnmanagedModules(
	string loadDirectory,
	params string[] unmanagedModules
)

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: Boolean
True if all the modules has been loaded successfully
Remarks
If 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