🎉 opencv_dart supports asynchronous now! 🎉 #143
Pinned
rainyl
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am very excited to announce that with the help of @abdelaziz-mahdy , opencv_dart supports asynchronous APIs now!
It's a breaking change and many APIs have been changed, Every API that supports asynchronous is ended by
Async
, e.g.,cv.imread
->cv.imreadAsync
.It's a prerelease, available at https://pub.dev/packages/opencv_dart/versions/1.1.0-dev.1
update your pubspec.yaml to:
to use it. It's experimental, open an issue if you find any bugs, have fun~
Some notes:
Mat cvtColor(Mat src, int code, {Mat? dst})
->Future<Mat> cvtColorAsync(Mat src, int code)
.Beta Was this translation helpful? Give feedback.
All reactions