| jj2000.j2k.wavelet.synthesis.InvWTData
InvWTData | public interface InvWTData extends MultiResImgData(Code) | | This interface extends the MultiResImgData interface with the methods that
are necessary for inverse wavelet data (i.e. data that is the source to an
inverse wavlet trasnform).
|
Method Summary | |
public int | getCbULX() Returns the horizontal code-block partition origin. | public int | getCbULY() Returns the vertical code-block partition origin Allowable values are 0
and 1, nothing else. | public SubbandSyn | getSynSubbandTree(int t, int c) Returns the subband tree, for the specified tile-component. |
getCbULX | public int getCbULX()(Code) | | Returns the horizontal code-block partition origin. Allowable values
are 0 and 1, nothing else.
|
getCbULY | public int getCbULY()(Code) | | Returns the vertical code-block partition origin Allowable values are 0
and 1, nothing else.
|
getSynSubbandTree | public SubbandSyn getSynSubbandTree(int t, int c)(Code) | | Returns the subband tree, for the specified tile-component. This method
returns the root element of the subband tree structure, see 'Subband'
and 'SubbandSyn'. The tree comprises all the available resolution
levels.
Parameters: t - The index of the tile, from 0 to T-1. Parameters: c - The index of the component, from 0 to C-1. The root of the tree structure. |
|
|