CapturedResultFilter
The CapturedResultFilter interface represents a captured result filter, which is responsible for filtering different types of captured results, including original image, decoded barcodes, recognized text lines, detected quads, normalized images, and parsed results.
Definition
Namespace: com.dynamsoft.cvr
Assembly: DynamsoftCaptureVisionBundle.aar
interface CapturedResultFilter
Methods
| Method | Description |
|---|---|
onOriginalImageResultReceived |
The method for monitoring the output of OriginalImageResultItem. |
onDecodedBarcodesReceived |
The method for monitoring the output of DecodedBarcodesResult. |
onRecognizedTextLinesReceived |
The method for monitoring the output of RecognizedTextLinesResult. |
onProcessedDocumentResultReceived |
The method for monitoring the output of ProcessedDocumentResult, which includes the detected quad, deskewed image and enhanced image. |
onParsedResultsReceived |
The method for monitoring the output of ParsedResult. |
onOriginalImageResultReceived
The method for monitoring the output of OriginalImageResultItem.
default void onOriginalImageResultReceived(@NonNull OriginalImageResultItem result);
Parameters
[in] result: A OriginalImageResultItem object as a original image result.
onDecodedBarcodesReceived
The method for monitoring the output of DecodedBarcodesResult.
default void onDecodedBarcodesReceived(@NonNull DecodedBarcodesResult result);
Parameters
[in] result: A DecodedBarcodesResult object as a decoded barcode result.
onRecognizedTextLinesReceived
The method for monitoring the output of RecognizedTextLinesResult.
default void onRecognizedTextLinesReceived(@NonNull RecognizedTextLinesResult result);
Parameters
[in] result: A RecognizedTextLinesResult object as a recognized text line result.
onProcessedDocumentResultReceived
The method for monitoring the output of ProcessedDocumentResult, which includes the detected quad, deskewed image and enhanced image.
default void onProcessedDocumentResultReceived(@NonNull ProcessedDocumentResult result);
Parameters
[in] result: A ProcessedDocumentResult object as a processed document result.
onParsedResultsReceived
The method for monitoring the output of ParsedResult.
default void onParsedResultsReceived(@NonNull ParsedResult result);
Parameters
[in] result: A ParsedResult object as a parsed result.