AdvancedOCR.RectangularWeights.RectangularWeights C# (CSharp) Method

RectangularWeights() public method

public RectangularWeights ( int width, int height, int maps ) : System
width int
height int
maps int
return System
        public RectangularWeights(int width, int height, int maps)
            : base(width * height * maps)
        {
            this.Width = width;
            this.Height = height;
            this.MapCount = maps;
        }