C# Class Ocronet.Dynamic.Recognizers.NBest

ファイルを表示 Open project: nickun/OCRonet Class Usage Examples

Public Properties

Property Type Description
fill int
ids List
n int
values List

Public Methods

Method Description
Add ( int id, double value ) : bool

add the id with the corresponding value

Clear ( ) : void

remove all elements

Length ( ) : int

get the number of elements in the NBest structure (between 0 and n)

NBest ( int n ) : System
Value ( int i ) : double

get the value corresponding to rank i

this ( int i ) : int

get the id corresponding to rank i

Method Details

Add() public method

add the id with the corresponding value
public Add ( int id, double value ) : bool
id int
value double
return bool

Clear() public method

remove all elements
public Clear ( ) : void
return void

Length() public method

get the number of elements in the NBest structure (between 0 and n)
public Length ( ) : int
return int

NBest() public method

public NBest ( int n ) : System
n int
return System

Value() public method

get the value corresponding to rank i
public Value ( int i ) : double
i int
return double

this() public method

get the id corresponding to rank i
public this ( int i ) : int
i int
return int

Property Details

fill public_oe property

public int fill
return int

ids public_oe property

public List ids
return List

n public_oe property

public int n
return int

values public_oe property

public List values
return List