CSJ2K.j2k.wavelet.WTDecompSpec.WTDecompSpec C# (CSharp) Method

WTDecompSpec() public method

Constructs a new 'WTDecompSpec' for the specified number of components and tiles, with the given main default decomposition type and number of levels.

NOTE: The tile specific things are not supported yet

public WTDecompSpec ( int nc, int dec, int lev ) : System
nc int The number of components /// ///
dec int The main default decomposition type /// ///
lev int The main default number of decomposition levels /// /// /// ///
return System
        public WTDecompSpec(int nc, int dec, int lev)
        {
            mainDefDecompType = dec;
            mainDefLevels = lev;
            specValType = new byte[nc];
        }