CSJ2K.j2k.entropy.Progression.Progression C# (CSharp) Method

Progression() public method

Constructor. Builds a new Progression object with specified type and bounds of progression.
public Progression ( int type, int cs, int ce, int rs, int re, int lye ) : System
type int The progression type /// ///
cs int The component index start /// ///
ce int The component index end /// ///
rs int The resolution level index start /// ///
re int The resolution level index end /// ///
lye int The layer index end /// ///
return System
        public Progression(int type, int cs, int ce, int rs, int re, int lye)
        {
            this.type = type;
            this.cs = cs;
            this.ce = ce;
            this.rs = rs;
            this.re = re;
            this.lye = lye;
        }