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