ARKBreedingStats.ArkOCR.readImageAtCoords C# (CSharp) Method

readImageAtCoords() private method

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
return 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);
        }