You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2020. It is now read-only.
I understand that there are too many OpenCV functions to implement them by one person. Let's do it together. Could you please explain how to add a new OpenCV function to the plugin?
Is this enough to add another
case "getVersionString":
result.success(org.opencv.core.Core.getVersionString());
break;
and implement the corresponding Flutter code like this?
Future<String> get versionString async {
return await _channel.invokeMethod('getVersionString') as String;
}
Anything else? How do we actually load the image and pass the data in parameters so that OpenCV can understand it?
I hope everybody will be able to implement the functions they need and submit PR for you to review and merge.
although I respect every effort to help the community by publishing libraries like this, I would like to suggest that we focus our efforts on another, more elaborate attempt to expose OpenCV APIs to Flutter: https://github.com/AdityaMulgundkar/flutter_opencv. No hard feelings
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I understand that there are too many OpenCV functions to implement them by one person. Let's do it together. Could you please explain how to add a new OpenCV function to the plugin?
Is this enough to add another
and implement the corresponding Flutter code like this?
Anything else? How do we actually load the image and pass the data in parameters so that OpenCV can understand it?
I hope everybody will be able to implement the functions they need and submit PR for you to review and merge.
I'm particularly interested in
The text was updated successfully, but these errors were encountered: