ARKBreedingStats.ArkOCR.readImageAtCoords C# (CSharp) Метод

readImageAtCoords() приватный Метод

private readImageAtCoords ( int resolution, Bitmap source, int x, int y, int width, int height, bool onlyMaximalMatches, bool onlyNumbers, bool writingInWhite = true ) : string
resolution int
source System.Drawing.Bitmap
x int
y int
width int
height int
onlyMaximalMatches bool
onlyNumbers bool
writingInWhite bool
Результат string
        private string readImageAtCoords(int resolution, Bitmap source, int x, int y, int width, int height, bool onlyMaximalMatches, bool onlyNumbers, bool writingInWhite = true)
        {
            return readImage(resolution, SubImage(source, x, y, width, height), onlyMaximalMatches, onlyNumbers, writingInWhite);
        }