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

getPrecInfo() public method

Get PrecInfo instance of the specified resolution level, component and precinct.
public getPrecInfo ( int c, int r, int p ) : CSJ2K.j2k.codestream.PrecInfo
c int Component index. /// ///
r int Resolution level index. /// ///
p int Precinct index. /// ///
return CSJ2K.j2k.codestream.PrecInfo
        public virtual PrecInfo getPrecInfo(int c, int r, int p)
        {
            return ppinfo[c][r][p];
        }