Accord.Imaging.UnmanagedImage.GetPixel C# (CSharp) Method

GetPixel() public method

Get color of the pixel with the specified coordinates.

See GetPixel(int, int) for more information.

public GetPixel ( IntPoint point ) : Color
point IntPoint Point's coordiates to get color of.
return Color
        public Color GetPixel(IntPoint point)
        {
            return GetPixel(point.X, point.Y);
        }

Same methods

UnmanagedImage::GetPixel ( int x, int y ) : Color