AI-generated Key Takeaways
- 
          TextRecognizeridentifies and extracts text within images.
- 
          It offers both synchronous and asynchronous processing options. 
- 
          Concurrent use with varying language settings may impact performance. 
- 
          Direct use on the main thread is discouraged due to potential UI blocking. 
TextRecognizer
class TextRecognizer : NSObjectA text recognizer that recognizes text in an image.
- 
                  
                  Returns a text recognizer with the given options. Concurrent usage of multiple TextRecognizerinstances with different language options is not recommended, since it may lead to performance degradation.DeclarationSwift class func textRecognizer(options: MLKCommonTextRecognizerOptions) -> SelfParametersoptionsOptions for configuring the text recognizer. Return ValueAn text recognizer configured with the given options. 
- 
                  
                  Processes the given image for text recognition. DeclarationSwift func process(_ image: MLKitCompatibleImage) async throws -> MLKTextParametersimageThe image to process. completionHandler to call back on the main queue when text recognition completes. 
- 
                  
                  Returns text recognition result in the given image or nilif there was an error. The text recognition is performed synchronously on the calling thread.It is advised to call this method off the main thread to avoid blocking the UI. As a result, an NSExceptionis raised if this method is called on the main thread.DeclarationSwift func results(in image: MLKitCompatibleImage) throws -> MLKTextParametersimageThe image to get results in. errorAn optional error parameter populated when there is an error getting results. Return ValueText recognition result in the given image or nilif there was an error.
