CSJ2K.j2k.wavelet.synthesis.InvWTFull.nextTile C# (CSharp) Метод

nextTile() публичный Метод

Advances to the next tile, in standard scan-line order (by rows then columns). An 'NoNextElementException' is thrown if the current tile is the last one (i.e. there is no next tile).
public nextTile ( ) : void
Результат void
        public override void nextTile()
        {
            int i;

            // Change tile
            base.nextTile();

            int nc = src.NumComps;
            int tIdx = src.TileIdx;
            for (int c = 0; c < nc; c++)
            {
                ndl[c] = src.getSynSubbandTree(tIdx, c).resLvl;
            }

            // Reset the decomposed component buffers.
            if (reconstructedComps != null)
            {
                for (i = reconstructedComps.Length - 1; i >= 0; i--)
                {
                    reconstructedComps[i] = null;
                }
            }
        }