I'm developing an iOS application with latest SDK that it will use OpenCV.
This app is a migration from an Android app, and I will use all it C++ files on my iOS project.
On C++ files I have functions signatures like this one:
myFunction(JNIEnv * jenv, jclass jobj, jint width, jint height,jintArray leftDetectionRectArray, jintArray rightDetectionRectArray )
Can I use these C++ files without any changes on my iOS code? or do you I have to do some changes on them?
What do you recommend me?