IdIndx Class Function Manual |
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
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
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
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
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 |
See also (class function)
row, col
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
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