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

getAnSubbandTree() public method

Returns a reference to the subband tree structure representing the subband decomposition for the specified tile-component of the source.
public getAnSubbandTree ( int t, int c ) : SubbandAn
t int The index of the tile. /// ///
c int The index of the component. /// ///
return SubbandAn
        public override SubbandAn getAnSubbandTree(int t, int c)
        {
            if (subbTrees[t][c] == null)
            {
                subbTrees[t][c] = new SubbandAn(getTileCompWidth(t, c), getTileCompHeight(t, c), getCompULX(c), getCompULY(c), getDecompLevels(t, c), getHorAnWaveletFilters(t, c), getVertAnWaveletFilters(t, c));
                initSubbandsFields(t, c, subbTrees[t][c]);
            }
            return subbTrees[t][c];
        }