Get all the methods that belongs to the IImage and Image class with ExposableMethodAttribute set true.

Namespace: Emgu.CV.Reflection
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static IEnumerable<KeyValuePair<string, MethodInfo>> GetImageMethods(
	IImage image
)
Public Shared Function GetImageMethods ( _
	image As IImage _
) As IEnumerable(Of KeyValuePair(Of String, MethodInfo))
public:
static IEnumerable<KeyValuePair<String^, MethodInfo^>>^ GetImageMethods(
	IImage^ image
)

Parameters

image
IImage
The IImage object to be refelected for methods marked with ExposableMethodAttribute

Return Value

All the methods that belongs to the IImage and Image class with ExposableMethodAttribute set true

See Also