Returns information about one of or all of the registered modules
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public static void cvGetModuleInfo(
IntPtr moduleName,
ref IntPtr version,
ref IntPtr loadedAddonPlugins
) |
Visual Basic (Declaration) |
---|
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