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

getPPX() public method

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