C# Класс Emgu.CV.Reflection.ReflectIImage

A collection of reflection function that can be applied to IImage object
Показать файл Открыть проект

Открытые методы

Метод Описание
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

Описание методов

GetImageMethods() публичный статический Метод

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
Результат MethodInfo>>.IEnumerable

GetPixelColor() публичный статический Метод

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
Результат IColor

GetTypeOfColor() публичный статический Метод

Get the color type of the image
public static GetTypeOfColor ( IImage image ) : Type
image IImage The image to apply reflection on
Результат System.Type

GetTypeOfDepth() публичный статический Метод

Get the depth type of the image
public static GetTypeOfDepth ( IImage image ) : Type
image IImage The image to apply reflection on
Результат System.Type