Documentation
Table of contents

This documentation is deprecated. It applies only to legacy version 2.x of Capture Vision and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

BufferedCharacterItem

The BufferedCharacterItem class represents a text line result item recognized by the library. It is derived from CapturedResultItem.

Definition

Module: dynamsoft_label_recognizer

class BufferedCharacterItem

Methods

Method Description
get_character Gets the buffered character value.
get_image Gets the image data of the buffered character.
get_features Gets all the features formatted with id and value of the buffered character.

get_character

Gets the buffered character value.

def get_character(self) -> str:

Return Value

Returns the buffered character value.

get_image

Gets the image data of the buffered character.

def get_image(self) -> ImageData:

Return Value

Returns the image data of the buffered character.

See Also

ImageData

get_features

Gets all the features formatted with id and value of the buffered character.

def get_features(self) -> List[Tuple[int, float]]:

Return Value

Returns a tuple list while each item contains following elements.

  • feature_id <int>: The feature id.
  • feature_value <float>: The feature value.

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: