AdvancedOCR.ConvolutionWeights.PropogateError C# (CSharp) Method

PropogateError() protected method

protected PropogateError ( RectangularStep downstream, int mapNumber ) : void
downstream RectangularStep
mapNumber int
return void
        protected override void PropogateError(RectangularStep downstream, int mapNumber)
        {
            RectangularStep upstream = downstream.Upstream[mapNumber];

            for (int y = 0; y < Height; y++)
            {
                for (int x = 0; x < Width; x++)
                {
                    PropogateError(upstream, downstream, x, y, mapNumber);
                }
            }
        }

Same methods

ConvolutionWeights::PropogateError ( RectangularStep upstream, RectangularStep downstream, int weightX, int weightY, int mapNumber ) : void