IDataCaptureService interface
A background data capture service interface.
This interface provides methods to tune the processing settings, start and stop the work, and pass the video frames from the camera to the background processing engine.
Extends the IRecognitionService and DataCapture interfaces.
public interface IDataCaptureService extends IRecognitionService
Methods
Name | Description |
---|---|
configureDataCaptureProfile | Creates a profile builder object, which allows you to configure the data capture service to recognize custom documents. |
getExtendedSettings | Provides access to extended service configuration settings. Inherited from IRecognitionService. |
setAreaOfInterest | Sets the area on the frame where the text is to be found. Inherited from IRecognitionService. |
setDebugLog | Attaches a callback for collecting debug data. Inherited from IRecognitionService. |
setTextTypes | Sets the text types to be used for recognition. |
start | Starts processing. Inherited from IRecognitionService. |
stop | Stops processing and releases the resources used by the recognition service. Inherited from IRecognitionService. |
submitFrame | Submits a video frame. |
submitRequestedFrame | Submits the video frame requested through the Callback.onRequestLatestFrame method. Inherited from IRecognitionService. |
Nested classes
Name | Description |
---|---|
Callback | A callback interface to interact with the recognition service: input the data and obtain the results. Extends IRecognitionService.Callback. |
DebugLog | A callback interface for collecting debug data. Inherited from the IRecognitionService.DebugLog interface without any modification. |
ExtendedSettings | Extended service configuration settings. Inherited without any modification from IRecognitionService.ExtendedSettings. |
Enumerations
The enumerations are inherited from IRecognitionService without any modifications.
Name | Description |
---|---|
ResultStabilityStatus | Result stability status: the estimate of how stable the result is, and whether it is likely to be improved by adding new frames. |
Warning | A warning that occurred during processing. |
02.03.2022 12:59:15