I created a license plate detection program with Python using OpenCv, the program takes in a picture of a license plate and it returns its numbers/letters. I wanted to incorporate my Python program into an iOS app using Swift. Is there a way I can provide an image from Swift and call the python script and get the returned value of the license plate?
Basically is there a way I can call python scripts from Swift?
Thanks
(I know I can translate the code over to C++ and create a bridge to Swift but I am not very familiar with C++)