ScreenToGif.Encoding.NeuQuant.Unbiasnet C# (CSharp) Method

Unbiasnet() private method

Unbias network to give byte values 0..255 and record position to prepare for sort.
private Unbiasnet ( ) : void
return void
        private void Unbiasnet()
        {
            for (int pos = 0; pos < Netsize; pos++)
            {
                _network[pos][0] >>= Netbiasshift;
                _network[pos][1] >>= Netbiasshift;
                _network[pos][2] >>= Netbiasshift;
                _network[pos][3] = pos; //Record color number for sorting.
            }
        }