Accord.Imaging.HoughCircleTransformation.SetHoughPoint C# (CSharp) Method

SetHoughPoint() private method

private SetHoughPoint ( int x, int y ) : void
x int
y int
return void
        private void SetHoughPoint(int x, int y)
        {
            if ((x >= 0) && (y >= 0) && (x < width) && (y < height))
            {
                houghMap[y, x]++;
            }
        }
    }