BufferedCharacterItem
The BufferedCharacterItem class represents a buffered character item. Each buffered character item represents a recognized character along with its image and features.
Definition
Namespace: Dynamsoft.DLR
class BufferedCharacterItem
Methods
| Method | Description |
|---|---|
GetCharacter |
Gets the buffered character value. |
GetImage |
Gets the image data of the buffered character. |
GetFeaturesCount |
Gets the number of features of the buffered character. |
GetFeature |
Gets the feature id and value of the buffered character at the specified index. |
GetFeatures |
Gets all the features of the buffered characters. |
GetCharacter
Gets the buffered character value.
char GetCharacter()
Return value
Returns the buffered character value.
GetImage
Gets the image data of the buffered character.
ImageData GetImage()
Return value
Returns the image data of the buffered character.
See Also
GetFeaturesCount
Gets the number of features of the buffered character.
int GetFeaturesCount()
Return value
Returns the number of features of the buffered character.
GetFeature
Gets the feature id and value of the buffered character at the specified index.
int GetFeature(int index, out int featureId, out float featureValue)
Parameters
[in] index The index of the feature to retrieve.
[out] featureId The feature id.
[out] featureValue The feature value.
Return value
Returns 0 if successful, otherwise returns a negative value.
GetFeatures
Gets all the features of the buffered characters.
int GetFeatures(out int[] featureIds, out float[] featureValues)
Parameters
[out] featureIds The feature ids.
[out] featureValues The feature values.
Return value
Returns 0 if successful, otherwise returns a negative value.