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

ProgressionSpec() public method

Creates a new ProgressionSpec object for the specified number of tiles and components.
public ProgressionSpec ( int nt, int nc, byte type ) : System
nt int The number of tiles /// ///
nc int The number of components /// ///
type byte the type of the specification module i.e. tile specific, /// component specific or both. The ProgressionSpec class should only be /// used only with the type ModuleSpec.SPEC_TYPE_TILE. /// ///
return System
        public ProgressionSpec(int nt, int nc, byte type)
            : base(nt, nc, type)
        {
            if (type != ModuleSpec.SPEC_TYPE_TILE)
            {
                throw new System.InvalidOperationException("Illegal use of class ProgressionSpec !");
            }
        }

Same methods

ProgressionSpec::ProgressionSpec ( int nt, int nc, int nl, IntegerSpec dls, byte type, CSJ2K.j2k.util.ParameterList pl ) : System