CapturedResultFilter
The CapturedResultFilter
class is responsible for filtering captured results. It contains several callback functions for different types of results, including original image, decoded barcodes, recognized text lines, detected quads, normalized images, and parsed results.
Note: Currently, user defined
CapturedResultFilter
is not supported.
Definition
Module: dynamsoft_capture_vision_router
class CapturedResultFilter(object)
Methods
Method | Description |
---|---|
get_name |
Gets the name of the captured result filter. |
set_name |
Sets the name of the captured result filter. |
get_name
Gets the name of the captured result filter.
def get_name(self) -> str:
Return Value
Returns the name of the captured result filter.
set_name
Sets the name of the captured result filter.
def set_name(self, name: str) -> None:
Parameters
name
The name of the captured result filter.