[This is preliminary documentation and is subject to change.]

Returns information about one of or all of the registered modules

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvGetModuleInfo(
	IntPtr moduleName,
	ref IntPtr version,
	ref IntPtr loadedAddonPlugins
)
Public Shared Sub cvGetModuleInfo ( _
	moduleName As IntPtr, _
	ByRef version As IntPtr, _
	ByRef loadedAddonPlugins As IntPtr _
)
public:
static void cvGetModuleInfo(
	IntPtr moduleName, 
	IntPtr% version, 
	IntPtr% loadedAddonPlugins
)

Parameters

moduleName
IntPtr
Name of the module of interest, or IntPtr.Zero, which means all the modules.
version
IntPtr %
Information about the module(s), including version
loadedAddonPlugins
IntPtr %
The list of names and versions of the optimized plugins that CXCORE was able to find and load

See Also