C# Class Emgu.CV.Reflection.ReflectIImage

A collection of reflection function that can be applied to IImage object
Exibir arquivo Open project: fajoy/RTSPExample

Public Methods

Method Description
GetImageMethods ( IImage image ) : MethodInfo>>.IEnumerable

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

GetPixelColor ( IImage image, Point location ) : IColor

Get the color at the specific location of the image

GetTypeOfColor ( IImage image ) : Type

Get the color type of the image

GetTypeOfDepth ( IImage image ) : Type

Get the depth type of the image

Method Details

GetImageMethods() public static method

Get all the methods that belongs to the IImage and Image class with ExposableMethodAttribute set true.
public static GetImageMethods ( IImage image ) : MethodInfo>>.IEnumerable
image IImage The IImage object to be refelected for methods marked with ExposableMethodAttribute
return MethodInfo>>.IEnumerable

GetPixelColor() public static method

Get the color at the specific location of the image
public static GetPixelColor ( IImage image, Point location ) : IColor
image IImage The image to obtain pixel value from
location Point The location to sample a pixel
return IColor

GetTypeOfColor() public static method

Get the color type of the image
public static GetTypeOfColor ( IImage image ) : Type
image IImage The image to apply reflection on
return System.Type

GetTypeOfDepth() public static method

Get the depth type of the image
public static GetTypeOfDepth ( IImage image ) : Type
image IImage The image to apply reflection on
return System.Type