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.
파일 보기 프로젝트 열기: cureos/csj2k 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
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