| java.lang.Object jj2000.j2k.entropy.Progression
Progression | public class Progression implements ProgressionType(Code) | | This class holds one of the different progression orders defined in
the bit stream. The type(s) of progression order are defined in the
ProgressionType interface. A Progression object is totally defined
by its component start and end, resolution level start and end and
layer start and end indexes. If no progression order change is
defined, there is only Progression instance.
See Also: ProgressionType |
Field Summary | |
public int | ce Component index for the end of a progression. | public int | cs | public int | lye The index of the last layer. | public int | re Resolution index for the end of a progression. | public int | rs | public int | type |
Constructor Summary | |
public | Progression(int type, int cs, int ce, int rs, int re, int lye) Constructor. |
ce | public int ce(Code) | | Component index for the end of a progression.
|
cs | public int cs(Code) | | Component index for the start of a progression
|
lye | public int lye(Code) | | The index of the last layer.
|
re | public int re(Code) | | Resolution index for the end of a progression.
|
rs | public int rs(Code) | | Resolution index for the start of a progression
|
type | public int type(Code) | | Progression type as defined in ProgressionType interface
|
Progression | public Progression(int type, int cs, int ce, int rs, int re, int lye)(Code) | | Constructor.
Builds a new Progression object with specified type and bounds
of progression.
Parameters: type - The progression type Parameters: cs - The component index start Parameters: ce - The component index end Parameters: rs - The resolution level index start Parameters: re - The resolution level index end Parameters: lye - The layer index end |
|
|