Accord.Imaging.UnmanagedImage.GetPixel C# (CSharp) 메소드

GetPixel() 공개 메소드

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.
리턴 Color
        public Color GetPixel(IntPoint point)
        {
            return GetPixel(point.X, point.Y);
        }

Same methods

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