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.
Definition
Package: com.dynamsoft.cvr
class CapturedResultFilter
Methods
| Method | Description |
|---|---|
getName |
Gets the name of the captured result filter. |
setName |
Sets the name of the captured result filter. |
getFilteredResultItemTypes |
Gets the types of result items being filtered. |
onOriginalImageResultReceived |
Callback for filtering original image results. |
onDecodedBarcodesReceived |
Callback for filtering decoded barcode results. |
onRecognizedTextLinesReceived |
Callback for filtering recognized text line results. |
getName
Gets the name of the captured result filter.
public String getName()
Return Value
Returns the name of the captured result filter.
setName
Sets the name of the captured result filter.
public void setName(String name)
Parameters
name The name of the captured result filter.
getFilteredResultItemTypes
Gets the types of result items being filtered.
public int getFilteredResultItemTypes()
Return Value
Returns an integer representing the types of result items being filtered.
onOriginalImageResultReceived
Callback function for filtering original image results.
public void onOriginalImageResultReceived(OriginalImageResultItem result)
Parameters
result The original image result to be filtered.
See Also
onDecodedBarcodesReceived
Callback function for filtering decoded barcode results.
public void onDecodedBarcodesReceived(DecodedBarcodesResult result)
Parameters
result The decoded barcodes result to be filtered.
See Also
onRecognizedTextLinesReceived
Callback function for filtering recognized text line results.
public void onRecognizedTextLinesReceived(RecognizedTextLinesResult result)
Parameters
result The recognized text lines result to be filtered.
See Also