CSJ2K.j2k.entropy.encoder.MQCoder.resetCtxt C# (CSharp) Method

resetCtxt() public method

Resets a context to the original probability distribution, and sets its more probable symbol to 0.
public resetCtxt ( int c ) : void
c int The number of the context (it starts at 0). /// ///
return void
        public void resetCtxt(int c)
        {
            I[c] = initStates[c];
            mPS[c] = 0;
        }