I'm developing an app with Xamarin using opencv. For xamarin.droid there isn't problem but for the .ios i have some difficult to bind the library. I followed this guide: http://trinnguyen.com/opencv-for-xamarin-ios/ but in I can't declare methods that expect for example Mat's objects because I don't have any opencv reference .
Someone has tried to do this type of binding?
Answers
You need to check if the library you would like to do the binding to is in obj c o swift.
If it is in swift - you need to expose methods you want to bind with @objc attribute (more details here => https://medium.com/@Flash3001/binding-swift-libraries-xamarin-ios-ff32adbc7c76)
At the moment there is no official support for swift libraries in Xamarin