CSJ2K.j2k.codestream.reader.PktDecoder.getPPY C# (CSharp) Method

getPPY() public method

Returns the precinct partition height for the specified component, resolution level and tile.
public getPPY ( int t, int c, int rl ) : int
t int the tile index /// ///
c int The index of the component (between 0 and C-1) /// ///
rl int The resolution level, from 0 to L. /// ///
return int
        public int getPPY(int t, int c, int rl)
        {
            return decSpec.pss.getPPY(t, c, rl);
        }