ReflectIImageGetPixelColor Method |
http://www.emgu.com
Get the color at the specific location of the image
Namespace:
Emgu.CV.Reflection
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static IColor GetPixelColor(
IInputArray image,
Point location
)
Public Shared Function GetPixelColor (
image As IInputArray,
location As Point
) As IColor
public:
static IColor^ GetPixelColor(
IInputArray^ image,
Point location
)
static member GetPixelColor :
image : IInputArray *
location : Point -> IColor
Parameters
- image
- Type: Emgu.CVIInputArray
The image to obtain pixel value from - location
- Type: System.DrawingPoint
The location to sample a pixel
Return Value
Type:
IColorThe color at the specific location
See Also