In this section, we will describe how to use a tflite model on iPhone for object detection. For details, please refer to the steps outlined on the following GitHub page: https://github.com/tensorflow/examples/tree/master/lite/examples/image_classification/ios.
Essentially, the procedure can be broken down into the following steps:
- This process should be completed on macOS with the latest version of Xcode installed. You should also have an Apple Developer certificate.
- In the Terminal, run Xcode's command-line tools (run xcode-select --install). Note that you need to complete this step, even if you have Xcode installed already.
- Type git clone https://github.com/tensorflow/examples.git into the Terminal. ...