C# Класс CSJ2K.j2k.entropy.Progression

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.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
ce int
cs int
lye int
re int
rs int
type int

Открытые методы

Метод Описание
Progression ( int type, int cs, int ce, int rs, int re, int lye ) : System

Constructor. Builds a new Progression object with specified type and bounds of progression.

ToString ( ) : System.String

Описание методов

Progression() публичный Метод

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 /// ///
Результат System

ToString() публичный Метод

public ToString ( ) : System.String
Результат System.String

Описание свойств

ce публичное свойство

Component index for the end of a progression.
public int ce
Результат int

cs публичное свойство

Component index for the start of a progression
public int cs
Результат int

lye публичное свойство

The index of the last layer.
public int lye
Результат int

re публичное свойство

Resolution index for the end of a progression.
public int re
Результат int

rs публичное свойство

Resolution index for the start of a progression
public int rs
Результат int

type публичное свойство

Progression type as defined in ProgressionType interface
public int type
Результат int