IdIndx Class Function Manual

COL

| HOME | BACK |

Purpose

To report the current column number of the IdIndx object.

Class

IdIndx

Usage

{int} ret = object.COL()

Example:

->ind = IdIndx()

->ind.init(1,100,200,0.3)

->print ind

1 ( 100 , 200) 0.300

->print ind.col()

200

->

See also (class function)

row

| HOME | BACK |


ID

| HOME | BACK |

Purpose

To report the current ID number of the IdIndx object.

Class

IdIndx

Usage

{int} ret = object.ID()

Example:

->ind = IdIndx()

->ind.init(1,100,200,0.3)

->print ind

1 ( 100 , 200) 0.300

->print ind.id()

     1

->

See also (class function)

row, col, sd

| HOME | BACK |


INDX

| HOME | BACK |

Purpose

To convert to an Indx object.

Class

IdIndx

Usage

{Indx} ret = object.INDX()

Example:

->ind = IdIndx()

->ind.init(1,100,200,0.3)

->print ind

1 ( 100 , 200) 0.300

->ind1 = ind.indx()

->print ind1

  (100 , 200)

->

See also (class function)

matrix

| HOME | BACK |


INIT

| HOME | BACK |

Purpose

To initialize an Indx object. 

Class

IdIndx

Usage

{void} object.INIT({int} argm1,{int} argm2,{int} argm3,{double} argm4)

argm1 = ID number

argm2 = row number

argm3 = column number

argm4 = standard deviation (in pixel unit)

Example:

->ind = IdIndx()

->ind.init(1,100,200,0.3)

->print ind

1 ( 100 , 200)  0.300

->

See also (class function)

row, col

| HOME | BACK |


MATRIX

| HOME | BACK |

Purpose

To convert to a Matrix object.

Class

IdIndx

Usage

{Matrix} ret = object.MATRIX()

Example:

->ind = IdIndx()

->ind.init(1,100,200,0.3)

->print ind

1 ( 100 , 200) 0.300

->M = ind.matrix()

->M

ans =

no of row : 4
no of column : 1

0: 1.00000
1: 200.00000
2: 100.00000
3: 0.30000

->

See also (class function)

row, col

| HOME | BACK |


ROW

| HOME | BACK |

Purpose

To report the current row number of the IdIndx object.

Class

IdIndx

Usage

{int} ret = object.ROW()

Example:

->ind = IdIndx()

->ind.init(1,100,200,0.3)

->print ind

1 ( 100 , 200) 0.300

->print ind.row()

100

->

See also (class function)

col

| HOME | BACK |


SD

| HOME | BACK |

Purpose

To report the current row number of the IdIndx object.

Class

IdIndx

Usage

{double} ret = object.ROW()

Example:

->ind = IdIndx()

->ind.init(1,100,200,0.3)

->print ind

1 ( 100 , 200) 0.300

->print ind.sd()

    0.3000

->

See also (class function)

id, row, col

| HOME | BACK |