CSJ2K.j2k.wavelet.analysis.ForwWTFull.getDecomp C# (CSharp) Method

getDecomp() public method

Returns the wavelet tree decomposition. Actually JPEG 2000 part 1 only supports WT_DECOMP_DYADIC decomposition.
public getDecomp ( int t, int c ) : int
t int The tile-index /// ///
c int The index of the component. /// ///
return int
        public override int getDecomp(int t, int c)
        {
            return WT_DECOMP_DYADIC;
        }