createTextCaptureServiceWithDelegate: method of the RTREngine class
Creates a background recognition service to run in text capture mode. Only one instance of the service is necessary per application: multiple threads for processing will be started internally.
Before a call to this method, implement the RTRTextCaptureServiceDelegate protocol to work with processing results and handle errors and warnings.
- (id<RTRTextCaptureService>)createTextCaptureServiceWithDelegate:(id<RTRTextCaptureServiceDelegate>)delegate;
- (id<RTRTextCaptureService>)createTextCaptureServiceWithDelegate:(id<RTRTextCaptureServiceDelegate>)delegate
settings:(RTRExtendedSettings*)settings;
Parameters
- delegate
- The delegate object that implements the RTRTextCaptureServiceDelegate protocol for interacting with the service.
- settings
- [optional] The extended service configuration settings represented by an RTRExtendedSettings object.
Return values
The method returns an instance implementing the RTRTextCaptureService protocol.
02.03.2022 12:59:15