http://www.emgu.com
Returns information about one of or all of the registered modules
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static void cvGetModuleInfo(
IntPtr moduleName,
ref IntPtr version,
ref IntPtr loadedAddonPlugins
) |
Visual Basic |
---|
Public Shared Sub cvGetModuleInfo ( _
moduleName As IntPtr, _
ByRef version As IntPtr, _
ByRef loadedAddonPlugins As IntPtr _
) |
Visual C++ |
---|
public:
static void cvGetModuleInfo(
IntPtr moduleName,
IntPtr% version,
IntPtr% loadedAddonPlugins
) |
Parameters
- moduleName
- Type: System..::..IntPtr
Name of the module of interest, or IntPtr.Zero, which means all the modules.
- version
- Type: System..::..IntPtr%
Information about the module(s), including version
- loadedAddonPlugins
- Type: System..::..IntPtr%
The list of names and versions of the optimized plugins that CXCORE was able to find and load
See Also