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

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

Initializes this object with the given source of wavelet coefficients. It initializes the resolution level for full resolutioin reconstruction.
public InvWTFull ( CBlkWTDataSrcDec src, DecoderSpecs decSpec ) : System
src CBlkWTDataSrcDec from where the wavelet coefficinets should be obtained. /// ///
decSpec CSJ2K.j2k.decoder.DecoderSpecs The decoder specifications /// ///
Результат System
        public InvWTFull(CBlkWTDataSrcDec src, DecoderSpecs decSpec)
            : base(src, decSpec)
        {
            this.src = src;
            int nc = src.NumComps;
            reconstructedComps = new DataBlk[nc];
            ndl = new int[nc];
        }