ReflectIImageGetImageMethods Method |
http://www.emgu.com
Get all the methods that belongs to the IImage and Image class with ExposableMethodAttribute set true.
Namespace:
Emgu.CV.Reflection
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
Syntaxpublic static IEnumerable<KeyValuePair<string, MethodInfo>> GetImageMethods(
IInputArray image
)
Public Shared Function GetImageMethods (
image As IInputArray
) As IEnumerable(Of KeyValuePair(Of String, MethodInfo))
public:
static IEnumerable<KeyValuePair<String^, MethodInfo^>^>^ GetImageMethods(
IInputArray^ image
)
static member GetImageMethods :
image : IInputArray -> IEnumerable<KeyValuePair<string, MethodInfo>>
Parameters
- image
- Type: Emgu.CVIInputArray
The IImage object to be refelected for methods marked with ExposableMethodAttribute
Return Value
Type:
IEnumerableKeyValuePairString,
MethodInfoAll the methods that belongs to the IImage and Image class with ExposableMethodAttribute set true
See Also