2

I am trying to build an iOS application that uses Firebase MLKit to recognize text from live camera frame.

I found an Android sample here. https://medium.com/digital-curry/firebase-mlkit-textdetection-in-android-using-firebase-ml-vision-apis-with-live-camera-72ef47ad4ebd

Does anyone know good sample in iOS?

Julian
  • 1,592
  • 1
  • 13
  • 33

1 Answers1

4

Text Detection From Firebase MLKit:

You can find demo code for Image to Text conversion using Firebase MLKit in iOS.

https://github.com/sayaleepote/TextDetect

For live recognization, you can create a custom camera and take a picture in the background periodically and detect a text from an image.

Custom Camera View for Capture Images:

For custom camera view, you can use below sample code.

Link: https://github.com/AlexLittlejohn/ALCameraViewController

Note: You can achieve this feature using iOS native MLKit + Vision framework

Refer This link for iOS native framework.

https://stackoverflow.com/questions/50918310

Let me know if you have any query.

Thanks.

MinuMaster
  • 1,457
  • 1
  • 13
  • 29